contentdb/app/templates/404.html

14 lines
272 B
HTML
Raw Normal View History

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