19 lines
533 B
HTML
19 lines
533 B
HTML
{% extends "base.html" %}
|
|
|
|
{%- block body %}
|
|
<h1>
|
|
{{ title | default(value="Unknown error") }}
|
|
</h1>
|
|
{{ message | default(value="No message provided.") | linebreaksbr | safe }}
|
|
{% if graph.meta.config.error_poem %}
|
|
<hr>
|
|
<div id="error-poem">
|
|
<em>
|
|
fallen<br/>
|
|
out of the circle<br/>
|
|
you are welcome to climb<br/>
|
|
back onto the {% if graph.meta.config.tree %}<a href="/tree">tree</a>{% else %}tree{% endif %}
|
|
</em>
|
|
</div>
|
|
{% endif %}
|
|
{%- endblock body %}
|