yenu/resources/templates/error.html
2017-03-28 00:19:23 +02:00

13 lines
269 B
HTML

{% extends "layout.html" %}
{% block content %}
<h1><span class="text-danger">Fehler: {{status}}</span></h1>
<hr>
{% if title %}
<h2 class="without-margin">{{title}}</h2>
{% endif %}
{% if message %}
<h4 class="text-danger">{{message}}</h4>
{% endif %}
{% endblock %}