9 lines
190 B
HTML
9 lines
190 B
HTML
|
<!-- 500.html -->
|
||
|
{% extends 'error.html' %} {% block content %}
|
||
|
<div>
|
||
|
<h1>{{ error }}</h1>
|
||
|
<h2>oops!</h2>
|
||
|
<p><br />Hang tight, let's try this again.</p>
|
||
|
</div>
|
||
|
{% endblock %}
|