From 11a6f8d8f15ca2ac6512158a50a15791938d0166 Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Fri, 24 Feb 2023 19:44:33 +0000 Subject: [PATCH] [FEAT] Add 404 page --- breccia_mapper/templates/404.html | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 breccia_mapper/templates/404.html diff --git a/breccia_mapper/templates/404.html b/breccia_mapper/templates/404.html new file mode 100644 index 0000000..17ba7e1 --- /dev/null +++ b/breccia_mapper/templates/404.html @@ -0,0 +1,7 @@ +{% extends 'base.html' %} + +{% block content %} +

Error 404: Page not Found

+ +

Sorry, we can't find that page. Click here to go home.

+{% endblock content %} \ No newline at end of file