| <!DOCTYPE html> |
| <html lang="en" class="h-full"> |
| <head> |
| <meta charset="utf-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> |
| <script> |
| if ( |
| localStorage.theme === "dark" || |
| (!("theme" in localStorage) && window.matchMedia("(prefers-color-scheme: dark)").matches) |
| ) { |
| document.documentElement.classList.add("dark"); |
| } |
| |
| |
| window.gaId = "%gaId%"; |
| window.gaIdDeprecated = "%gaIdDeprecated%"; |
| </script> |
| %sveltekit.head% |
| </head> |
| <body data-sveltekit-preload-data="hover" class="h-full dark:bg-gray-900"> |
| <div id="app" class="contents h-full">%sveltekit.body%</div> |
| </body> |
| </html> |
|
|