-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path404.html
More file actions
36 lines (34 loc) · 1018 Bytes
/
404.html
File metadata and controls
36 lines (34 loc) · 1018 Bytes
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
---
layout: null
permalink: /404.html
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Page Not Found</title>
<style>
body { text-align: center; font-family: Arial, sans-serif; padding-top: 50px; }
/* Limit image to approximately the width of a phone screen */
img {
width: 100%;
max-width: 375px;
height: auto;
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SX2JP3SZ98"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SX2JP3SZ98');
</script>
</head>
<body>
<h1>404 - Lost in Space</h1>
<p>The page you're looking for went up in smoke with our rocket stand.</p>
<img src="{{ '/media/404_error.png' | relative_url }}" alt="Burnt rocket stand">
<p>Consider it a successful flame test and <a href="{{ '/' | relative_url }}">return home</a>.</p>
</body>
</html>