-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
30 lines (23 loc) · 1.22 KB
/
404.php
File metadata and controls
30 lines (23 loc) · 1.22 KB
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
<?php
$_DOCUMENT['include'] = str_replace($_SERVER['SCRIPT_NAME'], '/includes/', $_SERVER['SCRIPT_FILENAME']);
$_DOCUMENT['title'] = 'Page Not Found (404)';
$_DOCUMENT['class'] = 'home';
include_once $_DOCUMENT['include'].'header.php';
?>
<div class="page">
<div class="section">
<div class="main page" role="main">
<div class="gutter prose">
<h1>Page Not Found</h1>
<p>There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things that we know we don’t know. But there are also unknown unknowns. There are things we don’t know we don’t know.</p>
<p>We don’t know what you were looking for and we don’t know we don’t know. <a href="/contact">Let us know</a>.</p>
</div><!-- /.gutter -->
</div><!-- /.main -->
<aside class="aside">
<h1>404</h1>
</aside><!-- /.aside -->
</div><!-- /.section -->
<br style="clear:both"><!-- Digging that spade -->
</div><!-- /.page -->
<?php include_once $_DOCUMENT['include'].'sponsors.php';?>
<?php include_once $_DOCUMENT['include'].'footer.php';?>