Fix broken PHP
This commit is contained in:
parent
fb6496f951
commit
8664fce9fe
@ -1,17 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
|
||||
<?php
|
||||
include "./php/age.php";
|
||||
include "./page-blocks/head-content.php";
|
||||
include "./page-blocks/footer.php";
|
||||
?>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<?php insert_head(); ?>
|
||||
<?php include "./page-blocks/head.php"; ?>
|
||||
<title>Access Denied</title>
|
||||
</head>
|
||||
<body>
|
||||
<?php include "./page-blocks/menu.php"; ?>
|
||||
<h1 class="page-title">Access Denied</h1>
|
||||
<div class="title-image">
|
||||
<picture>
|
||||
@ -30,6 +25,6 @@
|
||||
person who sent you the link. If it was me - I'm sorry, I messed up.
|
||||
</p>
|
||||
</div>
|
||||
<?php insert_footer(); ?>
|
||||
<?php include "./page-blocks/footer.php"; ?>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,17 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
|
||||
<?php
|
||||
include "./php/age.php";
|
||||
include "./page-blocks/head-content.php";
|
||||
include "./page-blocks/footer.php";
|
||||
?>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<?php insert_head(); ?>
|
||||
<?php include "./page-blocks/head.php"; ?>
|
||||
<title>Not Found</title>
|
||||
</head>
|
||||
<body>
|
||||
<?php include "./page-blocks/menu.php"; ?>
|
||||
<h1 class="page-title">Not Found</h1>
|
||||
<div class="title-image">
|
||||
<picture>
|
||||
@ -30,6 +25,6 @@
|
||||
person who sent you the link. If it was me - I'm sorry, I messed up.
|
||||
</p>
|
||||
</div>
|
||||
<?php insert_footer(); ?>
|
||||
<?php include "./page-blocks/footer.php"; ?>
|
||||
</body>
|
||||
</html>
|
@ -1,2 +1 @@
|
||||
<?php
|
||||
<footer><p>© Frederick Boniface 2022</p></footer>
|
@ -1,4 +1,3 @@
|
||||
<?php
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="./css/styles.css">
|
||||
|
@ -1,4 +1,3 @@
|
||||
<?php
|
||||
<div class="topnav" id="myTopnav">
|
||||
<a href="/">Home</a>
|
||||
<a href="/gpg.php">GPG</a>
|
||||
|
Loading…
Reference in New Issue
Block a user