22 lines
506 B
Plaintext
22 lines
506 B
Plaintext
|
{% extends "../templates/basic.njk" %}
|
||
|
|
||
|
{% block body %}
|
||
|
<main class="flex-container">
|
||
|
<div class="error">
|
||
|
<h1>
|
||
|
We are really sorry about this...
|
||
|
</h1>
|
||
|
<p>
|
||
|
There seems as if you've ran into an error...
|
||
|
<br> <br>
|
||
|
</p>
|
||
|
|
||
|
<h6>
|
||
|
Reported error:
|
||
|
</h6>
|
||
|
<code>
|
||
|
{{ data.error }}
|
||
|
</code>
|
||
|
</div>
|
||
|
</main>
|
||
|
{% endblock %}
|