From 92d8e4a3254c61c62f16408e1ffe3344b409a671 Mon Sep 17 00:00:00 2001 From: ivanhercaz Date: Sat, 7 Dec 2019 13:47:05 +0000 Subject: [PATCH] :lipstick: Add template to handle 404 error (#1) --- templates/404.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 templates/404.html diff --git a/templates/404.html b/templates/404.html new file mode 100644 index 0000000..1f229a1 --- /dev/null +++ b/templates/404.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} + +{% block title %} +{% trans %}Page does not exist!{% endtrans %} - {{ super() }} +{% endblock title %} + +{% block content %} +
+

{% trans %}The page you requested doesn't exist!{% endtrans %}

+
+{% endblock content %}