From 489c31414cad0eef11913d5cd4ea13f38b0f471a Mon Sep 17 00:00:00 2001 From: Lucas Date: Sun, 19 Mar 2023 21:59:41 +0000 Subject: [PATCH] backend: add barebone error pages --- templates/exception.html.ep | 2 ++ templates/not_found.html.ep | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 templates/exception.html.ep create mode 100644 templates/not_found.html.ep diff --git a/templates/exception.html.ep b/templates/exception.html.ep new file mode 100644 index 0000000..d90acf5 --- /dev/null +++ b/templates/exception.html.ep @@ -0,0 +1,2 @@ +% layout "main"; +% title "Error"; diff --git a/templates/not_found.html.ep b/templates/not_found.html.ep new file mode 100644 index 0000000..145b06d --- /dev/null +++ b/templates/not_found.html.ep @@ -0,0 +1,2 @@ +% layout "main"; +% title "Not Found";