-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
39 lines (39 loc) · 1.44 KB
/
app.html
File metadata and controls
39 lines (39 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html {{ HTML_ATTRS }}>
<head {{ HEAD_ATTRS }}>
<script>
(function() {
var stored = localStorage.getItem('color-mode');
var prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
var dark = stored === 'dark' || (!stored && prefersDark);
document.documentElement.classList.toggle('dark', dark);
})();
</script>
{{ HEAD }}
<meta name="google-site-verification" content="V4pGb0yYT8y3toGspViQ2KGw6DnNOsFd540PSLpHaaU" />
</head>
<body {{ BODY_ATTRS }}>
{{ APP }}
<!-- Google Analytics (Universal) - replace with GA4 when ready -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-104844719-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){ dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-104844719-1');
</script>
<script type="text/javascript">
var sc_project = 12572368;
var sc_invisible = 1;
var sc_security = "da9f020d";
</script>
<script type="text/javascript" src="https://www.statcounter.com/counter/counter.js" async></script>
<noscript>
<div class="statcounter">
<a title="Web Analytics" href="https://statcounter.com/" target="_blank">
<img class="statcounter" src="https://c.statcounter.com/12572368/0/da9f020d/1/" alt="Web Analytics" />
</a>
</div>
</noscript>
</body>
</html>