contentdb/app/templates/404.html

13 lines
296 B
HTML
Raw Permalink Normal View History

2021-04-10 17:30:19 +02:00
{% extends "base.html" %}
{% block title %}
{{ _("Page not found") }}
2021-04-10 17:30:19 +02:00
{% endblock %}
{% block content %}
<h1>{{ self.title() }}</h1>
2021-04-10 17:30:19 +02: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 17:30:19 +02:00
</p>
{% endblock %}