-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (41 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Game Of life</title>
<link rel="icon" href="web/icon/icon.svg">
<link rel="stylesheet" href="web/style.css">
<script src="web/color.js"></script>
<!-- Meta -->
<meta property="og:title" content="Conway's Game of Life"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://wavjaby.github.io/GameOfLife"/>
<meta property="og:image" content="https://wavjaby.github.io/GameOfLife/web/icon/icon.svg"/>
<meta property="og:description" content="Play Conway's Game of Life"/>
<meta name="theme-color" content="#7CFC00">
<!-- Include this to make the og:image larger -->
<meta name="twitter:card" content="summary_large_image">
<!-- Main script -->
<script src="web/main.js"></script>
<!-- Some stuff -->
<script src="web/stuff/omggif.js"></script>
<script src="web/stuff/stuff.js"></script>
<!-- Modules -->
<script src="web/chunk.js"></script>
<script src="web/chunkManager.js"></script>
<script src="web/templateManager.js"></script>
<script src="web/templateModels.js"></script>
<script src="web/miniMap.js"></script>
</head>
<body>
<div style="display: none">
<audio id="stuffAudio" src="web/stuff/stuff.mp3"></audio>
<!--<video id="v" style="display: none" loop>-->
<!-- <source src="web/stuff/output.mp4" type="video/mp4">-->
<!--</video>-->
</div>
<div id="templates"></div>
<div id="gamePage"></div>
<div id="teamState"></div>
</body>
</html>