-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
153 lines (143 loc) · 3.68 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!--
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
Project: Back Of Your Hand (https://backofyourhand.com)
Repository: https://github.com/adam-lynch/back-of-your-hand
Copyright © 2024 Adam Lynch (https://adamlynch.com)
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="description"
content="How well do you know your area? Test your knowledge by locating streets on a map."
/>
<meta
name="viewport"
content="width=device-width,initial-scale=1"
/>
<title>Back Of Your Hand</title>
<!-- Preloading, etc. -->
<link
rel="dns-prefetch"
href="https://www.overpass.de/"
/>
<link
rel="canonical"
href="https://backofyourhand.com/game"
/>
<!-- Assets -->
<link
rel="icon"
type="image/png"
href="/favicon.png"
/>
<!-- PWA stuff -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="/images/apple-touch-icon.png"
/>
<link
rel="manifest"
href="/manifest.webmanifest"
/>
<meta
name="theme-color"
content="#df206f"
/>
<meta
property="title"
content="Back Of Your Hand"
/>
<meta
property="description"
content="How well do you know your area? Test your knowledge by locating streets on a map."
/>
<!-- Social media / sharing stuff -->
<meta
property="og:title"
content="Back Of Your Hand"
/>
<meta
property="og:description"
content="How well do you know your area? Test your knowledge by locating streets on a map."
/>
<meta
property="og:image"
content="https://backofyourhand.com/images/social-screenshot.png?x"
/>
<meta
property="og:url"
content="https://backofyourhand.com"
/>
<meta
name="twitter:card"
content="summary_large_image"
/>
<!-- Non-essential, but recommended -->
<meta
name="image"
content="/images/social-screenshot.png?y"
/>
<meta
property="og:site_name"
content="Back of Your Hand"
/>
<meta
property="og:image:width"
content="1200"
/>
<meta
property="og:image:width"
content="630"
/>
<meta
name="twitter:image"
content="https://backofyourhand.com/images/social-screenshot.png?z"
/>
<meta
name="twitter:image:alt"
content="Screenshot of the game; on the left-hand side, the user is given a street name to find. The map is on the right-side, where a marker / guess has been placed by the user"
/>
<meta
name="twitter:creator"
content="@lynchy010"
/>
<meta
name="twitter:site"
content="@lynchy010"
/>
</head>
<body>
<noscript>
<div class="full-screen-display">
<div class="full-screen-display__inner">
<h1>JavaScript disabled</h1>
<p>
I'm afraid you need JavaScript to play this game. Sorry about that!
</p>
<p><a href="/learn-more">Learn more</a> about the game in general</p>
<img
class="hide-accessibly"
src="https://count.backofyourhand.com/count?p=/noscript"
/>
</div>
</div>
</noscript>
<script
type="module"
src="/source/index.ts"
></script>
<script>
if (
"%MODE%" === "production" &&
navigator.serviceWorker &&
!navigator.serviceWorker.controller
) {
navigator.serviceWorker.register("/serviceworker.js");
}
</script>
</body>
</html>