Adding error 404 catcher

This commit is contained in:
Marcus Andersson 2021-05-13 00:08:15 +02:00 committed by Kevin Morris
parent 82f3871a83
commit cdf75ced9a
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{% extends 'partials/layout.html' %}
{% block pageContent %}
<div class="box 404">
<h2>404 - {% trans %}Page Not Found{% endtrans %}</h2>
<p>{% trans %}Sorry, the page you've requested does not exist.{% endtrans %}</p>
</div>
{% endblock %}