-
Notifications
You must be signed in to change notification settings - Fork 0
/
not-found.html
100 lines (87 loc) · 4.42 KB
/
not-found.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
<!--
Copyright 2021 Miles Barr <[email protected]>
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.
-->
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Wayward Wanderer - An adventure game in Google Street View</title>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="Wayward Wanderer" />
<meta name="description" content="An adventure game in Google Street View" />
<meta name="keywords" content="adventure,game,street view,famous places" />
<meta name="theme-color" content="#39f" />
<!-- Preloads -->
<link rel="preload" href="background.png" as="image" />
<!-- Robots -->
<meta name="robots" content="follow, noarchive, noindex" />
<!-- Icons -->
<link rel="shortcut icon" sizes="16x16 24x24 32x32 48x48 64x64" href="favicon.ico" />
<link rel="icon" sizes="228x228" href="icon-228x228.png" />
<link rel="icon" sizes="192x192" href="icon-192x192.png" />
<link rel="icon" sizes="128x128" href="icon-128x128.png" />
<!-- Web app manifest -->
<link rel="manifest" href="manifest.webmanifest" />
<!-- Apple iOS -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Wayward Wanderer" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="apple-touch-icon" sizes="180x180" href="icon-180x180.png" />
<link rel="apple-touch-icon" sizes="167x167" href="icon-167x167.png" />
<link rel="apple-touch-icon" sizes="152x152" href="icon-152x152.png" />
<link rel="apple-touch-icon" sizes="144x144" href="icon-144x144.png" />
<link rel="apple-touch-icon" sizes="120x120" href="icon-120x120.png" />
<link rel="apple-touch-icon" sizes="114x114" href="icon-114x114.png" />
<link rel="apple-touch-icon" sizes="76x76" href="icon-76x76.png" />
<link rel="apple-touch-icon" sizes="72x72" href="icon-72x72.png" />
<link rel="apple-touch-icon" sizes="57x57" href="icon-57x57.png" />
<!-- Open Graph -->
<meta property="og:url" content="https://waywardwanderer.com/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Wayward Wanderer" />
<meta property="og:description" content="An adventure game in Google Street View" />
<meta property="og:image" content="https://waywardwanderer.com/open-graph.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@milesbarr" />
<meta name="twitter:title" content="Wayward Wanderer" />
<meta name="twitter:description" content="An adventure game in Google Street View" />
<meta name="twitter:image" content="https://waywardwanderer.com/twitter-card.png" />
<!-- Styles -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Lobster&family=Open+Sans" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
</head>
<body>
<main id="page-content">
<header>
<h1 class="logo" translate="no">Wayward Wanderer</h1>
<p>The page you were looking for was not found.</p>
</header>
<a href="/"><button type="button" class="primary-button">Explore</button></a>
</main>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=GOOGLE_ANALYTICS_MEASUREMENT_ID"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "GOOGLE_ANALYTICS_MEASUREMENT_ID");
</script>
</body>
</html>