mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
11 lines
216 B
Plaintext
11 lines
216 B
Plaintext
|
{% extends "base.html.j2" %}
|
||
|
|
||
|
{% set title = error.name %}
|
||
|
|
||
|
{% block page_content %}
|
||
|
<div class="container">
|
||
|
<h1 id="title">{{ error.name }}</h1>
|
||
|
<p>{{ error.description }}</p>
|
||
|
</div>
|
||
|
{% endblock page_content %}
|