yenu/resources/templates/error.html

13 lines
268 B
HTML
Raw Normal View History

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