-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (73 loc) · 2.83 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<!--
Copyright 2024 nigjo.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html>
<head>
<title>Docks Runner</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" sizes="16x16" href="res/dock_runner-16.png" type="image/png">
<link rel="icon" sizes="48x48" href="res/dock_runner-48.png" type="image/png">
<link rel="icon" sizes="16x16 48x48 192x192" href="res/dock_runner.ico" type="image/vnd.microsoft.icon">
<link rel="icon" sizes="192x192" href="res/dock_runner-192.png" type="image/png">
<link rel="icon" sizes="any" href="res/dock_runner.svg" type="image/svg+xml">
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="res/dock_runner-180.png">
<link rel="manifest" href="game.json" />
<meta name="theme-color" content="#4169e1">
<script src="res/swinit.js"></script>
<script>
console.log('INDEX', 'init scripts');
document.addEventListener('DOMContentLoaded', () => {
console.log('INDEX', 'DOM loaded');
});
</script>
<script type="module">
import LM from './res/m_lang.js';
LM.updatePage();
</script>
<script src="res/game.js" type="module"></script>
<link rel="stylesheet" href="res/game.css"/>
<style>body{
background-color: royalblue;
color:white
}</style>
</head>
<body class="bgWater">
<header>
<div id="logo" class="bgWay">
<h1><a href="./index.html">Docks Runner</a></h1>
<h2 class="bgWall" id="seed" data-l10nkey="index.loading">loading...</h2>
</div>
<div class="wayblock">
<div id="timer" class="bgWay" data-l10nkey="index.prepared">
Be prepared...
</div><div class="bgWall"></div>
<div id="points" class="bgWay" data-l10nkey="index.initialPoints">
0 pts
</div><div class="bgWall"></div>
<div id="message" class="bgWay">
</div><div class="bgWall"></div>
</div>
</header>
<main>
<div id="game"></div>
</main>
<nav></nav>
<footer>
© Nigjo Iqn
- <a href="https://github.com/nigjo/mazegen/" data-l10nkey="index.github">View on GitHub</a>
- <a href="code.html" data-l10nkey="index.share">Share</a>
- <a href="settings.html" data-l10nkey="index.settings">Settings</a>
</footer>
</body>
</html>