forked from nielsenramon/chalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
38 lines (34 loc) · 915 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
---
permalink: /404.html
sitemap: false
---
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>{{ site.name }} | Page not found</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
{% if site.local_fonts %}
{% asset fonts.css %}
{% endif %}
{% if site.blog_theme == "light" %}
{% asset notfound-light.css %}
{% else %}
{% asset notfound-dark.css %}
{% endif %}
</head>
<body>
<main class="notfound-wrapper">
<div class="notfound-content">
<h1><a href="{{ '/' | relative_url }}" title="Back to homepage">{{ site.name }}</a></h1>
<p>
Looks like you got lost. Let's get you back to the <a href="{{ '/' | relative_url }}">homepage</a>!
</p>
</div>
</main>
{% unless site.local_fonts %}
{% asset webfonts.js %}
{% endunless %}
</body>
</html>