Aaron Fischer
4a135f7880
Update bootstrap required a lot of template work, so I had no change to split the commit in two separate commits to rebase the language change. This means, yenu is EN only by now.
12 lines
268 B
HTML
12 lines
268 B
HTML
{% 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 %}
|