34 lines
1.3 KiB
PHP
34 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<?php include "../page-blocks/head.php"; ?>
|
|
<title>Access Denied</title>
|
|
</head>
|
|
<body>
|
|
<?php include "../page-blocks/menu.php"; ?>
|
|
<h1 class="page-title error-title">Access Denied</h1>
|
|
<div class="title-image">
|
|
<picture>
|
|
<source media="(max-width: 1000px)" srcset="/images/error-pages/denied_200.jxl" type="image/jxl">
|
|
<source media="(max-width: 1000px)" srcset="/images/error-pages/denied_200.webp" type="image/webp">
|
|
<source media="(max-width: 1000px)" srcset="/images/error-pages/denied_200.png" type="image/png">
|
|
<source srcset="/images/error-pages/denied.jxl" type="image/jxl">
|
|
<source srcset="/images/error-pages/denied.webp" type="image/webp">
|
|
<img src="/images/error-pages/denied.png" alt="Denied">
|
|
</picture>
|
|
</div>
|
|
<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 include "../page-blocks/footer.php"; ?>
|
|
</body>
|
|
</html>
|