forked from alexphelps/server-error-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404-error.html
36 lines (36 loc) · 1.41 KB
/
404-error.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
---
layout: error_page
title: 404 Not Found
---
<div class="container">
<!-- Jumbotron -->
<div class="jumbotron">
<h1><i class="fa fa-frown-o red"></i> {{page.title}}</h1>
<p class="lead">We couldn't find what you're looking for on <em><span id="display-domain"></span></em>.</p>
<p><a onclick=javascript:checkSite(); class="btn btn-default btn-lg"><span class="green">Take Me To The Homepage</span></a>
<script type="text/javascript">
function checkSite(){
var currentSite = window.location.hostname;
window.location = "http://" + currentSite;
}
</script>
</p>
</div>
</div>
<div class="container">
<div class="body-content">
<div class="row">
<div class="col-md-6">
<h2>What happened?</h2>
<p class="lead">A 404 error status implies that the file or page that you're looking for could not be found.</p>
</div>
<div class="col-md-6">
<h2>What can I do?</h2>
<p class="lead">If you're a site visitor</p>
<p>Please use your browser's back button and check that you're in the right place. If you need immediate assistance, please send us an email instead.</p>
<p class="lead">If you're the site owner</p>
<p>Please check that you're in the right place and get in touch with your website provider if you believe this to be an error.</p>
</div>
</div>
</div>
</div>