-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.njk
50 lines (49 loc) · 1.24 KB
/
index.njk
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
<!doctype html>
<html
lang="en"
dir="ltr"
itemscope
itemtype="http://schema.org/WebApplication">
<head>
<meta
name="viewport"
content="width=device-width,initial-scale=1"
/>
<meta
property="og:image"
content="https://henrycatalinismith.github.io/wargames/images/opengraph.png"
/>
<meta
property="og:description"
content="global thermonuclear war"
/>
<title>
Wargames
</title>
{% set scss %}{% include "style.scss" %}{% endset %}
<style type="text/css">
{{ scss | scss | safe }}
</style>
</head>
<body data-mode="menu">
<header>
{% include "name.njk" %}
{% include "logo.njk" %}
{% include "alternateName.njk" %}
</header>
{% include "image.njk" %}
{% include "playButton.njk" %}
{% include "description.njk" %}
{% include "loadingBar.njk" %}
{% include "creator.njk" %}
{% include "applicationCategory.njk" %}
{% include "operatingSystem.njk" %}
{% include "pauseButton.njk" %}
{% include "pauseMenu.njk" %}
{% include "progressBar.njk" %}
{% set js %}{% include "src/menu.js" %}{% endset %}
<script type="text/javascript">
{{ js | terser | safe }}
</script>
</body>
</html>