bornhack-website/src/templates/500.html
Thomas Flummer 1c88ed8073
Added title blocks to templates that did not have one (#511)
In most cases this mirrors the primary header on the page, but in some cases the title is simplified and/or nested to reflect the depth of the current page

Co-authored-by: Thomas Steen Rasmussen <tykling@bornhack.org>
2020-06-03 21:30:10 +02:00

14 lines
256 B
HTML

{% extends 'base.html' %}
{% block title %}
500 internal server error | {{ block.super }}
{% endblock %}
{% block content %}
<p class="lead">
500 internal server error. Sorry about that. The people responsible have been notified.
</p>
{% endblock %}