-
Notifications
You must be signed in to change notification settings - Fork 5
/
404.html
34 lines (30 loc) · 974 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
---
layout: error
---
<div class="container">
<div class="row text-center">
<div class="col-xs-12">
<h1>Oops!</h1>
<h2>404 Not Found</h2>
Sorry, an error has occured, requested page not found
</div>
</div>
<br><br>
<div class="row text-center">
<div class="col-xs-12">
<a onclick="goBack()" class="btn btn-default btn-lg"><span class="glyphicon glyphicon-arrow-left"></span> Back</a>
<a href="{{ site.baseurl }}/" class="btn btn-warning btn-lg"><span class="glyphicon glyphicon-home"></span> Home </a>
</div>
</div>
<br><br>
<div class="row text-center">
<div class="col-xs-12">
{% include contact.html %}
</div>
</div>
</div>
<script>
function goBack() {
window.history.back();
}
</script>