summaryrefslogtreecommitdiff
path: root/src/error_404.php
blob: 79bb95548fa52d3464842231309e90eab7aea071 (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"); ?>