This repository has been archived on 2023-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
athena.fb-infra.uk/error-pages/404.php

28 lines
509 B
PHP
Raw Normal View History

2022-09-20 21:52:56 +01:00
<!DOCTYPE html>
<html>
<head>
<?php
set_include_path("./../");
include './page-blocks/headers.php';
?>
<title>Athena - Error 404</title>
</head>
<body>
<!-- Main Content Begins -->
<?php require "./page-blocks/title-image.php";?>
<h1>Oh no! That page can't be found</h1>
<p><a class="actionbutton" href="/">Go back to the homepage</a></p>
<h3>404 - Not Found</h3>
<!-- Footer -->
<?php include './page-blocks/footer.php';?>
</body>
</html>