yenu/resources/templates/error.html

13 lines
269 B
HTML
Raw Normal View History

2017-03-15 00:28:27 +01:00
{% extends "layout.html" %}
{% block content %}
2017-03-28 00:19:23 +02:00
<h1><span class="text-danger">Fehler: {{status}}</span></h1>
2017-03-15 00:28:27 +01:00
<hr>
{% if title %}
<h2 class="without-margin">{{title}}</h2>
{% endif %}
{% if message %}
<h4 class="text-danger">{{message}}</h4>
{% endif %}
{% endblock %}