forked from WoTTsecurity/wott-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
39 lines (36 loc) · 1.27 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
---
layout: error
current: error
title: "404 - Page Not Found"
permalink: 404.html
---
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{% include dynamic_title.html %}
<title>{% if title %}{{ title }}{% elsif page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{% include head.html %}
</head>
<header class="b_header">{% include header.html %}</header>
<body>
<div class="b_content">
<section class="error-message">
<h1 class="error-code">404</h1>
<p class="error-description">Page not found</p>
<a class="error-link" href="{{ site.baseurl }}">Go to the front page →</a>
</section>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous"></script>
{% include analytics.html %}
{% if page.class == "post-template" %}
{% include post-scripts.html %}
{% elsif page.class == "page-template" %}
{% include page-scripts.html %}
{% endif %}
</body>
<footer class="b_footer"></footer>
</html>