forked from agrc/gis.utah.gov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
42 lines (42 loc) · 1.09 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
40
41
42
---
layout: default
permalink: /404.html
---
<style>
.background {
margin-top: 15px;
min-height: 500px;
background-image: url({% link images/404.png %});
background-repeat: no-repeat;
background-position: top center;
}
.error-heading {
font-size: 4em;
font-weight: 800;
margin: 0;
color: #e67e15;
}
.error-sub-heading {
font-weight: 800;
padding-top: 0;
}
.shadow {
text-shadow: 0 1px 20px rgba(0,0,0,.5);
}
</style>
<div class="background">
<h1 class="shadow error-heading text-center">We're Sorry...</h1>
<h2 class="shadow error-sub-heading text-center">Page Not Found</h2>
<p class="shadow text-center">Try <a href="{% link search/index.html %}">searching</a> for the page and notify us <a href="{{ site.github.repository_url }}/issues/new">by creating an issue</a>.</p>
<div>
<script>
window.onload = function (){
ga('send', {
hitType: 'event',
eventCategory: '404',
eventAction: '404-path-' + document.location.pathname,
eventLabel: '404-referrer-' + document.referrer,
transport: 'beacon'
});
};
</script>