-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
56 lines (51 loc) · 1.38 KB
/
index.html
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Wine Log Explorer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Wine Log Explorer" />
<meta property="og:url" content="https://timkurvers.github.io/wine-log-explorer/" />
<meta
property="og:image"
content="https://timkurvers.github.io/wine-log-explorer/images/wine-log-explorer.png"
/>
<meta property="og:description" content="Explorer for Wine logs" />
<style>
html,
body {
margin: 0;
}
@media (prefers-color-scheme: light) {
body {
background-color: #fff;
color: #000;
}
}
@media (prefers-color-scheme: dark) {
body {
background-color: #242424;
color: #fff;
}
}
noscript {
display: block;
padding: 50px;
margin: 0 auto;
text-align: center;
}
</style>
<script
defer
data-domain="timkurvers.github.io/wine-log-explorer"
src="https://plausible.io/js/script.js"
></script>
</head>
<body>
<div id="container">
<noscript> Wine Replay Explorer requires JavaScript to be enabled.</noscript>
</div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>