1
0
Fork 0
app.sixfold.org/www/errors/404.php
2024-11-14 04:30:20 -05:00

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"; ?>