-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.77 KB
/
index.html
File metadata and controls
42 lines (38 loc) · 1.77 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
40
41
42
<!doctype html>
<html lang="en" class="dark no-scrollbar">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icons/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>jumpyjacko | Home</title>
<script>
if (!("theme" in localStorage)) {
if (window.matchMedia("(prefers-color-scheme: dark)").matches) {
localStorage.theme = "dark";
} else {
localStorage.theme = "light";
}
}
document.documentElement.classList.toggle(
"dark",
localStorage.theme === "dark" ||
(!("theme" in localStorage) &&
window.matchMedia("(prefers-color-scheme: dark)").matches),
);
</script>
<meta name="description" content="A totally awesome website" />
<meta property="og:title" content="jumpyjacko's awesome website" />
<meta property="og:description" content="definitely not written with a really heavy framework!" />
<meta proprety="og:url" content="https://jumpyjacko.github.io/" />
<meta property="og:image" content="https://jumpyjacko.github.io/images/website-embed-image.png" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="jumpyjacko's awesome website" />
<meta name="twitter:description" content="definitely not written with a really heavy framework!" />
<meta name="twitter:image" content="https://jumpyjacko.github.io/images/website-embed-image.png" />
</head>
<body class="bg-cream text-midnight dark:bg-midnight dark:text-cream">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>