29 lines
740 B
PHP
29 lines
740 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>Access Denied</title>
|
|
</head>
|
|
<body>
|
|
<h1 class="page-title">Access Denied</h1>
|
|
<div class="page-main-content">
|
|
<p>
|
|
I don't know where you are trying to go, but my server has decided
|
|
that you aren't allowed to go there and has given you this error.
|
|
</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>
|