svrjs-mods-directory/includes/page_500.php

14 lines
450 B
PHP
Raw Normal View History

2024-12-27 15:05:54 +01:00
<?php
if (!defined('SVRJS_MOD_DIRECTORY')) die;
$pageTitle = "500 Internal Server Error";
$pageDescription = "500 Internal Server Error";
include 'header.php';
?>
<main class="content">
<h1>500 Internal Server Error</h1>
<p>Uh oh! Something went wrong on our side!</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';
?>