forked from aljfk1971/swissup.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
38 lines (35 loc) · 981 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
---
layout: default
title: 404
permalink: 404.html
---
<div class="jumbotron">
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--12-col">
<div class="mdl-typography--font-light mdl-typography--display-3">
Page Not Found.
</div>
<div class="mdl-typography--font-light mdl-color-text--grey-700 mdl-typography--headline">
<a href="{{ "/" | prepend: site.baseurl }}" id="back" title="Go Back">⇐</a> Go Back
</div>
</div>
</div>
</div>
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--12-col">
<div class="clearfix suggestions-group">
<h4>Related Articles</h4>
<ul id="related-articles-404" class="search-results"></ul>
</div>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function(event) {
document.getElementById('back').addEventListener('click', function(e) {
if (history.length > 1) {
e.preventDefault();
history.back();
}
});
});
</script>