svrjs-mods-directory/includes/page_404.php

14 lines
416 B
PHP
Raw Normal View History

2024-12-27 15:05:54 +01:00
<?php
if (!defined('SVRJS_MOD_DIRECTORY')) die;
$pageTitle = "404 Not Found";
$pageDescription = "404 Not Found";
include 'header.php';
?>
<main class="content">
<h1>404 Not Found</h1>
<p>The page you have requested doesn't exist.</p>
<p><a href="<?php echo htmlspecialchars(URL_REWRITTEN ? APP_ROOT : APP_ROOT . APP_FILENAME . '/') ?>" class="btn">Return to home</a></p>
</main>
<?php
include 'footer.php';
?>