2020-10-12 11:26:35 +00:00
{% extends 'nopaque.html.j2' %}
{% block page_content %}
<div class="container">
2020-10-23 08:30:56 +00:00
<h1 id="title">{{ title }}</h1>
2020-10-12 11:26:35 +00:00
<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">
2020-10-23 08:30:56 +00:00
<h2>About the "{{ title }}" error</h2>
2020-10-12 11:26:35 +00:00
<p>A generic error message, given when an unexpected condition was encountered and no more specific message is suitable.</p>
</div>
<div class="modal-footer">
<a href="#!" class="btn-flat modal-close waves-effect waves-green">Close</a>
</div>
</div>
{% endblock page_content %}