-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
49 lines (43 loc) · 891 Bytes
/
404.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
---
title: 404 Error | Richard Westenra
description: Page not found
permalink: /404.html
---
{% include header.html %}
<style>
canvas {
position: fixed;
top: 0;
left: 0;
z-index: 0;
}
main {
max-width: 510px;
background: rgba(233, 226, 215, 0.9);
position: relative;
z-index: 1;
padding: 10px 20px;
}
.default .postHeader {
margin: 0;
}
.container {
min-height: 400px; /* Mobile nav overflow fix */
}
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
}
</style>
</head>
<body class="default">
{% include nav.html %}
<main class="wrapper">
<h2 class="postHeader">Oops! This is awkward.</h2>
<p>The page you’re looking for isn’t here. Try the <a href="/">home</a> or <a href="/blog/">blog</a> pages instead, maybe.</p>
</main>
{% include footerJS.html %}
<script src="/assets/js/404.js"></script>
{% include footer.html %}