Fix relative refs

This commit is contained in:
Fred Boniface 2022-10-07 22:14:05 +01:00
parent 8664fce9fe
commit f40f5ff3f0
2 changed files with 6 additions and 6 deletions

View File

@ -2,11 +2,11 @@
<html>
<head>
<?php include "./page-blocks/head.php"; ?>
<?php include "../page-blocks/head.php"; ?>
<title>Access Denied</title>
</head>
<body>
<?php include "./page-blocks/menu.php"; ?>
<?php include "../page-blocks/menu.php"; ?>
<h1 class="page-title">Access Denied</h1>
<div class="title-image">
<picture>
@ -25,6 +25,6 @@
person who sent you the link. If it was me - I'm sorry, I messed up.
</p>
</div>
<?php include "./page-blocks/footer.php"; ?>
<?php include "../page-blocks/footer.php"; ?>
</body>
</html>

View File

@ -2,11 +2,11 @@
<html>
<head>
<?php include "./page-blocks/head.php"; ?>
<?php include "../page-blocks/head.php"; ?>
<title>Not Found</title>
</head>
<body>
<?php include "./page-blocks/menu.php"; ?>
<?php include "../page-blocks/menu.php"; ?>
<h1 class="page-title">Not Found</h1>
<div class="title-image">
<picture>
@ -25,6 +25,6 @@
person who sent you the link. If it was me - I'm sorry, I messed up.
</p>
</div>
<?php include "./page-blocks/footer.php"; ?>
<?php include "../page-blocks/footer.php"; ?>
</body>
</html>