12 lines
227 B
HTML
12 lines
227 B
HTML
|
|
{% extends "layouts/base.html" %}
|
||
|
|
{% block body %}
|
||
|
|
<h1>Internal server error</h1>
|
||
|
|
|
||
|
|
{% if error %}
|
||
|
|
<div class="alert alert-danger">
|
||
|
|
We are sorry. We've rencountered an unrecoverable error.
|
||
|
|
</div>
|
||
|
|
{% endif %}
|
||
|
|
{% endblock %}
|
||
|
|
|