aboutsummaryrefslogtreecommitdiff
path: root/public/index.html
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2022-07-21 07:22:36 -0400
committerFurkan Sahin <furkan-dev@proton.me>2022-07-21 07:22:36 -0400
commit59067695f934184c7e6efaa4fc89fbde2f27a7cb (patch)
treeaa0673196256ec61544b6acbc3471a81516b5f20 /public/index.html
parentb3fdc004706a1501b32372747abc1f4f4b7dd367 (diff)
initial migration, app runs
Diffstat (limited to 'public/index.html')
-rw-r--r--public/index.html37
1 files changed, 0 insertions, 37 deletions
diff --git a/public/index.html b/public/index.html
deleted file mode 100644
index adf7737..0000000
--- a/public/index.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<!DOCTYPE html>
-<html lang="en" data-theme="light" class="">
-
-<head>
- <meta charset='utf-8'>
- <meta name='viewport' content='width=device-width,initial-scale=1'>
-
- <title>PT Scheduler</title>
-
- <link rel='icon' type='image/png' href='./favicon.png'>
-
- <link rel='stylesheet' href='./build/bundle.css'>
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/svelte-material-ui@4.2.0/bare.min.css" />
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700" />
- <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
-
- <!-- Load the Svelte output -->
- <script defer src='./build/bundle.js'></script>
-
- <!-- Set initial theme the theme -->
- <script>
- if ("theme" in localStorage) {
- document.documentElement.setAttribute('data-theme', localStorage.theme)
- }
- else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
- localStorage.theme = 'dark'
- document.documentElement.setAttribute('data-theme', 'dark')
- }
- else
- localStorage.theme = 'light'
- </script>
-</head>
-
-<body>
-</body>
-
-</html> \ No newline at end of file