36 lines
981 B
Twig
36 lines
981 B
Twig
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Internal Server Error</title>
|
||
|
<link rel="stylesheet" type="text/css" href="/error.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="wrap">
|
||
|
<h1>
|
||
|
<img src="/images/404-info.gif">
|
||
|
The page is currently unavailable
|
||
|
</h1>
|
||
|
<p>
|
||
|
The page you are looking for experienced a severe explosion.
|
||
|
</p>
|
||
|
{% if reported %}
|
||
|
<p>
|
||
|
The developers have been notified of this issue, sorry for the inconvenience!
|
||
|
</p>
|
||
|
{% endif %}
|
||
|
<hr>
|
||
|
{% if message %}
|
||
|
<h2>
|
||
|
{{ message }}
|
||
|
</h2>
|
||
|
{% endif %}
|
||
|
<h3>
|
||
|
HTTP 500 - Internal Server Error
|
||
|
<br>
|
||
|
Internet Explorer
|
||
|
</h3>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|