| | <!DOCTYPE html> |
| | <html lang="en" class="h-full"> |
| | <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" /> |
| | <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> |
| |
|
| | |
| | <script> |
| | if (window.gaId) { |
| | const script = document.createElement("script"); |
| | script.src = "https://www.googletagmanager.com/gtag/js?id=" + window.gaId; |
| | script.async = true; |
| | document.head.appendChild(script); |
| | |
| | window.dataLayer = window.dataLayer || []; |
| | function gtag() { |
| | dataLayer.push(arguments); |
| | } |
| | gtag("js", new Date()); |
| | |
| | gtag("config", window.gaId); |
| | gtag("consent", "default", { ad_storage: "denied", analytics_storage: "denied" }); |
| | |
| | |
| | } |
| | </script> |
| |
|
| | |
| | <script> |
| | if (window.gaIdDeprecated) { |
| | (function (i, s, o, g, r, a, m) { |
| | i["GoogleAnalyticsObject"] = r; |
| | (i[r] = |
| | i[r] || |
| | function () { |
| | (i[r].q = i[r].q || []).push(arguments); |
| | }), |
| | (i[r].l = 1 * new Date()); |
| | (a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]); |
| | a.async = 1; |
| | a.src = g; |
| | m.parentNode.insertBefore(a, m); |
| | })( |
| | window, |
| | document, |
| | "script", |
| | "https://www.google-analytics.com/analytics.js", |
| | "ganalytics" |
| | ); |
| | ganalytics("create", window.gaIdDeprecated, "auto"); |
| | ganalytics("send", "pageview"); |
| | } |
| | </script> |
| | </body> |
| | </html> |
| |
|