-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
44 lines (36 loc) · 1.25 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
42
43
44
<?php
require_once( "include/page_elements.php" );
require_once( "include/utils.php" );
http_response_code(404);
?>
<!DOCTYPE html>
<html>
<?php page_head( "Page not found" ); ?>
<body>
<div id="header-ghost" ></div>
<div class="container-fluid no-side-padding">
<div class="col-xs-12 no-side-padding">
<?php
output_header();
output_navbar();
?>
<div class="row page-body">
<div class="col-md-12 col-md-offset-0 col-sm-10 col-sm-offset-1 col-xs-12">
<div class="row top-spacer"> </div>
<div class="row side-margins row-margins bottom-margin">
<center><div class="notindex-title" style="margin-bottom: 3rem;">PAGE NOT FOUND</div></center>
<p><center>
<img src="/images/dozer_uh_oh.png" style="max-width: 100%;" title="Dozer Uh Oh" /><br />
The requested page does not exist.<br/>
<a href="/contact">Contact us</a><br/>
<a href="/">Return to home page</a>
</center></p>
</div>
<?php output_footer(); ?>
</div>
</div>
</div>
</div>
<?php page_foot(); ?>
</body>
</html>