-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
41 lines (38 loc) · 1.51 KB
/
404.php
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
<!DOCTYPE html>
<html>
<head>
<title>Henry Harris</title>
<link rel="stylesheet" href="/assets/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/assets/style.css">
<script src="/assets/js/jquery-3.4.1.min.js"></script>
<script src="/assets/js/handlebars.runtime-v4.7.6.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-149253046-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-149253046-1');
</script>
<script src="/assets/js/templatesCompiled.js"></script>
<script>
const sidebar = Handlebars.templates['sidebar/sidebar']({})
const sidebarFooterMobile = Handlebars.templates['footer/mobile']({})
$(document).ready(function () {
$("#sidebar").html(sidebar)
$("#sidebar-footer--mobile").html(sidebarFooterMobile)
})
</script>
</head>
<body>
<div id="sidebar" class="sidebar"></div>
<div class="body">
<div class="error">
<i class="fas fa-exclamation-triangle error__icon"></i>
<p class="error__message">That page was not found. Click <a href="/">here</a> to return to the homepage.</p>
</div>
</div>
<div id="sidebar-footer--mobile" class="sidebar-footer--mobile"></div>
</body>
</html>