add 404 page

This commit is contained in:
2022-01-24 01:16:28 +00:00
parent 60b51d60e4
commit d54a912938

View File

@@ -0,0 +1,16 @@
{% extends 'layout.html' %}
{% load static %}
{% block content %}
<div class="grid-container">
<div class="grid-x padding-top-1 padding-bottom-1 padding-left-1">
<div class="cell">
<h1>404 (page not found)</h1>
</div>
<div class="cell">
Die angeforderte Seite konnte nicht gefunden werden. Hier geht es wieder zurück zur <a href="{% url 'home' %}">Startseite</a>.
</div>
</div>
</div>
{% endblock %}