13 lines
296 B
HTML
Raw Permalink Normal View History

2021-04-10 16:30:19 +01:00
{% extends "base.html" %}
{% block title %}
{{ _("Page not found") }}
2021-04-10 16:30:19 +01:00
{% endblock %}
{% block content %}
<h1>{{ self.title() }}</h1>
2021-04-10 16:30:19 +01:00
<p>
{{ _("That page could not be found. The link may be broken, the page may have been deleted, or you may not have access to it.") }}
2021-04-10 16:30:19 +01:00
</p>
{% endblock %}