28 lines
677 B
PHP
28 lines
677 B
PHP
<!DOCTYPE html>
|
|
|
|
<?php
|
|
include "./php/age.php";
|
|
include "./page-blocks/head-content.php";
|
|
include "./page-blocks/footer.php";
|
|
?>
|
|
|
|
<html>
|
|
<head>
|
|
<?php insert_head(); ?>
|
|
<title>Not Found</title>
|
|
</head>
|
|
<body>
|
|
<h1 class="page-title">Not Found</h1>
|
|
<div class="page-main-content">
|
|
<p>
|
|
I don't know where you are trying to go, but wherever it is, it
|
|
doesn't exist.
|
|
</p>
|
|
<p>
|
|
If you followed a link and got this page then get in touch with the
|
|
person who sent you the link. If it was me - I'm sorry, I messed up.
|
|
</p>
|
|
</div>
|
|
<?php insert_footer(); ?>
|
|
</body>
|
|
</html>
|