proxadmin/app/templates/errors/500.html

28 lines
560 B
HTML
Raw Normal View History

2017-03-08 13:53:09 -05:00
{% extends "base.html" %}
{% block title %}Internal Server Error{% endblock %}
{% block page_content %}
<div class="page-header">
<h1>Internal Server Error</h1>
</div>
2017-06-11 22:12:27 -04:00
<b>
2017-03-08 13:53:09 -05:00
<pre>
.--. .--.
_ ` \ / ` _
`\.===. \.^./ .===./`
\/`"`\/
, | 500 | ,
/ `\|;-.-'|/` \
/ |::\ | \
.-' ,-'`|:::; |`'-, '-.
| |::::\| |
| |::::;| |
| \::::// |
| `.://' |
.' `.
_,' `,_
</pre>
2017-06-11 22:12:27 -04:00
</b>
2017-03-08 13:53:09 -05:00
{% endblock %}