bornhack-website/src/templates/404.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
199 B
HTML

{% extends 'base.html' %}
{% block title %}
404 page not found | {{ block.super }}
{% endblock %}
{% block content %}
<p class="lead">
404 page not found. Sorry about that.
</p>
{% endblock %}