16 lines
433 B
PHP
16 lines
433 B
PHP
<?php
|
|
|
|
$description = "The page you requested could not be found.";
|
|
$title = "Page Not Found";
|
|
|
|
include "partials/head.php";
|
|
?>
|
|
<body>
|
|
<?php include "partials/header.php"; ?>
|
|
<main id="main" class="flow">
|
|
<header>
|
|
<h1><?= $title ?></h1>
|
|
</header>
|
|
<p>The page you requested could not be found.</p>
|
|
</main>
|
|
<?php include "partials/footer.php"; ?>
|