14 lines
No EOL
450 B
PHP
14 lines
No EOL
450 B
PHP
<?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';
|
|
?>
|