-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.24 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en" class="text-gray-900 bg-slate-100 font-sans">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ .Title }}</title>
<style>
body{margin: 0; container-type: inline-size;}
.text-gray-900{color: oklch(21% 0.034 264.665)}
.bg-slate-100{background-color: oklch(96.8% 0.007 247.896)}
.font-sans{font-family: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'}
.flex{display: flex}
.flex-col{flex-direction: column}
.grow{flex-grow: 1}
.min-h-container{min-height: 100cqh}
.justify-center{justify-content: center}
.self-center{align-self: center}
.min-w-fit{min-width: fit-content}
</style>
<script type="module" src="/src/app.ts"></script>
</head>
<body>
<div class="flex flex-col min-h-container min-w-fit">
<header></header>
<main class="grow flex justify-center">
<div class="self-center jsonly">Loading...</div>
<noscript class="self-center"><style>.jsonly{display: none}</style>JavaScript is required.</noscript>
</main>
<footer></footer>
</div>
</body>
</html>