blob: 432ade4d7b39639902e968dc7110e63816d68878 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
$title = "Page not found [404]";
require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
?>
<p>
The page you tried to access doesn't exist. I probably just haven't made it yet.
If you think it should definitely exist, let me know by emailing me at kai@kaistevenson.com
</p>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
|