21 lines
560 B
HTML
21 lines
560 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<title>500 - Indestructables</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width">
|
||
|
{% include "style.html" %}
|
||
|
<link rel="icon" type="image/png" href="{{ url_for('static', filename='img/favicon.png') }}">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
{% include "header.html" %}
|
||
|
<center>
|
||
|
<h1 style="font-size:10em;line-height:0em;">500</h1>
|
||
|
<p>An internal server error has occurred. Please try again later, or notify the administrator if this keeps happening.</p>
|
||
|
</center>
|
||
|
{% include "footer.html" %}
|
||
|
</body>
|
||
|
|
||
|
</html>
|