Add custom 404 page

This commit is contained in:
rubenwardy
2021-04-10 16:30:19 +01:00
parent c2994a27fd
commit 8dbd22f56c
4 changed files with 24 additions and 7 deletions

13
app/templates/404.html Normal file
View File

@@ -0,0 +1,13 @@
{% 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 %}