youyesyet/resources/templates/error.html
Simon Brooke f438803723 #2: I'm getting something back!
That's probably as far as I can get inside the firewall. Now it has to go out!
2018-08-08 16:22:05 +01:00

25 lines
718 B
HTML

{% extends "base.html" %}
{% block big-links %}
{% endblock %}
{% block content %}
<div class="container-fluid">
<div class="row-fluid">
<div class="col-lg-12">
<div class="centering text-center">
<div class="text-center">
<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 %}
</div>
</div>
</div>
</div>
</div>
{% endblock %}