-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
54 lines (49 loc) · 2.02 KB
/
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
50
51
52
53
54
---
layout: error
current: error
title: "404 - Page Not Found"
permalink: 404.html
---
<!--
This error template is used for all 404 errors, which might occur on your site.
It's a good idea to keep this template as minimal as possible in terms of both file size and complexity.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>{{ page.title }}</title>
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="{{ '/assets/built/screen.css' | relative_url }}" />
<link rel="stylesheet" type="text/css" href="{{ '/assets/built/screen.edited.css' | relative_url }}" />
<link rel="stylesheet" type="text/css" href="{{ '/assets/built/style.css' | relative_url }}" />
<!-- This tag outputs SEO meta+structured data and other important settings -->
{% include head.html %}
</head>
<body class="error-template">
<div class="site-wrapper">
<header class="site-header outer {% if page.cover %}" style="background-image: url(/{{ page.cover }})){% else %}no-cover{% endif %}">
<div class="inner">
<nav class="site-nav-center">
{% if site.logo %}
<a class="site-nav-logo" href="/"><img src="/{{ site.logo }}" alt="{{ site.title }}" /></a>
{% else %}
<a class="site-nav-logo" href="/">{{ site.title }}</a>
{% endif %}
</nav>
</div>
</header>
<main id="site-main" class="site-main outer" role="main">
<div class="inner">
<section class="error-message">
<h1 class="error-code">404</h1>
<p class="error-description">Page not found</p>
<a class="error-link" href="/">Go to the front page →</a>
</section>
</div>
</main>
</div>
</body>
</html>