mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
20 lines
766 B
Django/Jinja
20 lines
766 B
Django/Jinja
{% extends 'nopaque.html.j2' %}
|
|
|
|
{% block page_content %}
|
|
<div class="container">
|
|
<h1>{{ title }}</h1>
|
|
<p class="light">{{ request.path }}</p>
|
|
<p>Alternatively, you can visit the <a href="{{ url_for('main.index') }}">Main Page</a> or read <a class="modal-trigger" href="#more-information-modal">more information</a> about this type of error.</p>
|
|
</div>
|
|
|
|
<div class="modal" id="more-information-modal">
|
|
<div class="modal-content">
|
|
<h4>{{ title }}</h4>
|
|
<p>The requested resource could not be found but may be available in the future. Subsequent requests by the client are permissible.</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<a href="#!" class="btn-flat modal-close waves-effect waves-green">Close</a>
|
|
</div>
|
|
</div>
|
|
{% endblock page_content %}
|