-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (26 loc) · 994 Bytes
/
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
<!DOCTYPE html>
<head>
<title>ContinuGo: freed from the tyranny of the grid</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Go, freed from the tyranny of the grid of intersections." />
<meta name="theme-color" content="#FFF" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="media/style.css" />
<link rel="icon" href="media/favicon.svg">
<link rel="manifest" href="manifest.json">
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('service-worker.js');
}
</script>
<script src="continugo.js"></script>
</head>
<body>
<p>If you can see this perhaps you don't have JavaScript enabled?</p>
<p>Or perhaps I messed something up? No idea, really.</p>
<p>Bugs to: https://github.com/tasuki/continugo</p>
<script>
var app = Elm.Main.init();
</script>
</body>
</html>