-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
22 lines (21 loc) · 696 Bytes
/
404.html
File metadata and controls
22 lines (21 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
title: 404 Page Not Found
layout: default
permalink: /404.html
---
<div style="text-align: center;">
<h1>
<strong>Error 404!</strong> - Page Not Found <span class="fa fa-frown-o"></span>
</h1>
<p>The page you were looking for, was not found on this server.</p>
<p>Learn more about 404's on <a href="https://en.wikipedia.org/wiki/HTTP_404" style="color:inherit;"><span class="fa fa-wikipedia-w fa-lg"></span></a></p>
<div style="padding-top: 20px">
<a href="{{ site.baseurl }}/" class="btn btn-primary">Go Home</a>
<a href="javascript:goBack()" class="btn btn-secondary">Go Back</a>
</div>
</div>
<script>
function goBack() {
window.history.back();
}
</script>