Files
.templates
about
css
errors
styles
400.php
401.php
403.php
404.php
410.php
414.php
500.php
images
minecraft
smz3mw
src
startpage
styles
terraria
.dockerignore
.gitignore
.gitlab-ci.yml
.htaccess
Dockerfile
README.md
favicon.ico
index.php
logo.png
9iron/errors/500.php
2020-08-22 20:45:17 -05:00

20 lines
645 B
PHP

<!DOCTYPE html>
<html>
<head>
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-meta.php';?>
<link href="/errors/styles/styles.css" type="text/css" rel="stylesheet" />
<title>500 Internal Server Error</title>
</head>
<body>
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-header.php';?>
<div class="content">
<div class="section">
<h1>@w@</h1>
<h2>500</h2>
<p>Something bad happened. Contact the site administrator and mention the error "500", the URL you tried to access, and the time it happened.</p>
</div>
</div>
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-footer.php';?>
</body>
</html>