-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
93 lines (93 loc) · 4.87 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/style.css" />
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""
/>
<link rel="manifest" href="manifest.json" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style id="compass-style"></style>
<title>Power Walk Adventure</title>
<!-- ios support -->
<link rel="apple-touch-icon" href="images/icons/icon-72-72.png" />
<link rel="apple-touch-icon" href="images/icons/icon-96-96.png" />
<link rel="apple-touch-icon" href="images/icons/icon-128-128.png" />
<link rel="apple-touch-icon" href="images/icons/icon-144-144.png" />
<link rel="apple-touch-icon" href="images/icons/icon-152-152.png" />
<link rel="apple-touch-icon" href="images/icons/icon-192-192.png" />
<link rel="apple-touch-icon" href="images/icons/icon-384-384.png" />
<link rel="apple-touch-icon" href="images/icons/icon-512-512.png" />
<meta name="apple-mobile-web-app-status-bar" content="#f15927" />
<meta name="theme-color" content="#cdeaf1" />
</head>
<template id="update-start-template">
<div><span data-i18n-key="update-updating">Updating</span>: ${text}</div>
<div data-i18n-key="update-takes-time">This may take some time</div>
<div class="small" data-i18n-key="update-window-close">This window can be closed</div>
</template>
<template id="update-finish-template">
<div data-i18n-key="update-ready">Update ready</div>
<div>${text}</div>
</template>
<body>
<input id="symbol-menu" class="hidden" type="checkbox" />
<input id="symbol-labs" class="hidden" type="radio" name="top" />
<input id="symbol-map" class="hidden" type="radio" name="top" />
<input id="symbol-settings" class="hidden" type="radio" name="top" />
<input id="symbol-page" class="hidden" type="radio" name="top" />
<input id="symbol-popup" class="hidden" type="checkbox" />
<input id="authenticated" class="hidden" type="checkbox" />
<input id="update" class="hidden" type="checkbox" />
<input id="debug" class="hidden" data-setting-default="" type="checkbox" />
<input id="bit-bat" class="hidden" data-setting-default="" type="checkbox" />
<input id="bit-dodo" class="hidden" data-setting-default="" type="checkbox" />
<input id="bit-dove" class="hidden" data-setting-default="true" type="checkbox" />
<input id="bit-dragon" class="hidden" data-setting-default="true" type="checkbox" />
<input id="bit-eagle" class="hidden" data-setting-default="true" type="checkbox" />
<input id="bit-flamingo" class="hidden" data-setting-default="" type="checkbox" />
<input id="bit-goose" class="hidden" data-setting-default="true" type="checkbox" />
<input id="bit-owl" class="hidden" data-setting-default="true" type="checkbox" />
<input id="bit-parrot" class="hidden" data-setting-default="true" type="checkbox" />
<input id="bit-peacock" class="hidden" data-setting-default="true" type="checkbox" />
<input id="bit-phoenix" class="hidden" data-setting-default="true" type="checkbox" />
<input id="bit-rooster" class="hidden" data-setting-default="true" type="checkbox" />
<input id="bit-swan" class="hidden" data-setting-default="" type="checkbox" />
<input id="bit-turkey" class="hidden" data-setting-default="true" type="checkbox" />
<input id="translate" class="hidden" data-setting-default="" type="checkbox" />
<header>
<div id="menu" class="popup">Menu (loading)</div>
<div id="popup" class="popup"><div id="popup-content" class="content">Popup (loading)</div></div>
<span class="larger dark-blue right"> </span>
<label for="symbol-menu" class="symbol">☰</label>
<label for="symbol-settings" class="symbol debug">⚙️</label>
<label for="symbol-map" id="icon-map" class="symbol" data-loading-counter="0"></label>
<label for="symbol-labs" id="icon-labs" class="symbol">⚗️</label>
<h1>Power Walk Adventure</h1>
<div id="messages" class="messages debug"> -- messages --</div>
<a id="hash" class="hidden"></a>
<input id="friend-bits" class="debug" data-setting-default="196672" type="number" style="height: 0.9rem; width:4rem;"/>
</header>
<main>
<div id="labs">Labs (Loading)</div>
<div id="map">Map (Loading)</div>
<div id="settings" data-changes="[]">Settings (Loading)</div>
<div id="page">Page (loading)</div>
</main>
<footer>
<div id="location" class="left">Getting Location</div>
<div id="timestamp">??:??:??</div>
<div style="float:right; margin-right:4%;">
<label for="debug" class="hidden">🐞</label>
<label for="translate" class="hidden">🐠</label>
</div>
</footer>
<script type="module" src="app.js"></script>
</body>
</html>