Attempt fix error page

This commit is contained in:
Fred Boniface 2022-09-21 10:39:26 +01:00
parent 25d93f52b7
commit a6fdc117e1
1 changed files with 2 additions and 5 deletions

View File

@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<?php <?php
set_include_path("./../"); set_include_path("../.");
include './page-blocks/headers.php'; include './page-blocks/headers.php';
?> ?>
<title>Athena - Error 404</title> <title>Athena - Error 404</title>
@ -11,7 +11,7 @@
<body> <body>
<!-- Main Content Begins --> <!-- Main Content Begins -->
<?php require "./page-blocks/title-image.php";?> <?php include "./page-blocks/title-image.php";?>
<h1>Oh no! That page can't be found</h1> <h1>Oh no! That page can't be found</h1>
@ -19,9 +19,6 @@
<h3>404 - Not Found</h3> <h3>404 - Not Found</h3>
<!-- Footer -->
<?php include './page-blocks/footer.php';?>
</body> </body>
</html> </html>