aboutsummaryrefslogtreecommitdiffstats
path: root/templates/error.html
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@blos.sm>2024-01-30 16:16:05 +0000
committerLibravatar cel 🌸 <cel@blos.sm>2024-01-30 16:16:05 +0000
commitf00159f53b3774601500ec65345791311ff6efa1 (patch)
treecc65a487e71a056126e1935108a494c7851863f9 /templates/error.html
parent8c03d9a53f4bc2f70fb5c1e0487bc74fe0137fcb (diff)
downloadblossom-f00159f53b3774601500ec65345791311ff6efa1.tar.gz
blossom-f00159f53b3774601500ec65345791311ff6efa1.tar.bz2
blossom-f00159f53b3774601500ec65345791311ff6efa1.zip
migrate to poem and askama
Diffstat (limited to '')
-rw-r--r--templates/error.html (renamed from templates/error.html.tera)6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/error.html.tera b/templates/error.html
index 5a4cc17..a3ffff4 100644
--- a/templates/error.html.tera
+++ b/templates/error.html
@@ -1,10 +1,10 @@
-{% extends "base" %}
+{% extends "base.html" %}
{% block content %}
<div class="content panel">
- <h2>Error {{ status }}: {{ req }}</h2>
+ <h2>Error {{ status }}</h2>
<h3>{{ message }}</h3>
</div>
-{% endblock %}
+{% endblock %} \ No newline at end of file