diff options
author | cel 🌸 <cel@blos.sm> | 2023-01-16 05:49:03 +0000 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2023-01-16 05:49:03 +0000 |
commit | 67790fcb2f593dae9e57c0f6accf0335b5d80c43 (patch) | |
tree | 5408f5964b4bef6473b4dd059a4ae3dc41bcf924 /templates/error.html.tera | |
parent | 859f9fe9f8225e7bc3dcf769d3704ce3614db6bf (diff) | |
download | blossom-67790fcb2f593dae9e57c0f6accf0335b5d80c43.tar.gz blossom-67790fcb2f593dae9e57c0f6accf0335b5d80c43.tar.bz2 blossom-67790fcb2f593dae9e57c0f6accf0335b5d80c43.zip |
add error handlers
Diffstat (limited to 'templates/error.html.tera')
-rw-r--r-- | templates/error.html.tera | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/error.html.tera b/templates/error.html.tera new file mode 100644 index 0000000..5a4cc17 --- /dev/null +++ b/templates/error.html.tera @@ -0,0 +1,10 @@ +{% extends "base" %} + +{% block content %} + +<div class="content panel"> + <h2>Error {{ status }}: {{ req }}</h2> + <h3>{{ message }}</h3> +</div> + +{% endblock %} |