From fc0445fcec7b2413ffef75bcdb74ea038712cbd3 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Sun, 28 Aug 2022 19:32:05 +0200 Subject: [PATCH] Add missing template --- app/templates/error.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 app/templates/error.html diff --git a/app/templates/error.html b/app/templates/error.html new file mode 100644 index 0000000..1d93c59 --- /dev/null +++ b/app/templates/error.html @@ -0,0 +1,12 @@ +{%- import "utils.html" as utils with context -%} +{% extends "layout.html" %} + +{% block head %} +{{ title }} +{% endblock %} + +{% block content %} +
+

{{ title }}

+
+{% endblock %}