27 lines
552 B
HTML
27 lines
552 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}Internal Server Error{% endblock %}
|
||
|
|
||
|
{% block page_content %}
|
||
|
<div class="page-header">
|
||
|
<h1>Internal Server Error</h1>
|
||
|
</div>
|
||
|
<pre>
|
||
|
.--. .--.
|
||
|
_ ` \ / ` _
|
||
|
`\.===. \.^./ .===./`
|
||
|
\/`"`\/
|
||
|
, | 500 | ,
|
||
|
/ `\|;-.-'|/` \
|
||
|
/ |::\ | \
|
||
|
.-' ,-'`|:::; |`'-, '-.
|
||
|
| |::::\| |
|
||
|
| |::::;| |
|
||
|
| \::::// |
|
||
|
| `.://' |
|
||
|
.' `.
|
||
|
_,' `,_
|
||
|
</pre>
|
||
|
|
||
|
{% endblock %}
|