diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-07-21 08:57:30 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-07-21 08:57:30 -0400 |
| commit | 4d0484132aa2a6baef12a5ed5d3d4c3ca1ad7106 (patch) | |
| tree | 9e6afc515a7b92e9ee89c75888b0a23b02c8735c /dist/index.html | |
| parent | 59067695f934184c7e6efaa4fc89fbde2f27a7cb (diff) | |
All works. learn source map error and fix it
Diffstat (limited to 'dist/index.html')
| -rw-r--r-- | dist/index.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dist/index.html b/dist/index.html new file mode 100644 index 0000000..38ff96f --- /dev/null +++ b/dist/index.html @@ -0,0 +1,38 @@ +<!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 Manager</title> + + <link rel='icon' type='image/png' href='./favicon.png'> + + <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 --> + + + <!-- 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> + <script type="module" crossorigin src="/assets/index.bba5120c.js"></script> + <link rel="stylesheet" href="/assets/index.ed9081f6.css"> +</head> + +<body> +</body> + +</html>
\ No newline at end of file |
