diff --git a/cookbook/templates/404.html b/cookbook/templates/404.html new file mode 100644 index 00000000..036148c4 --- /dev/null +++ b/cookbook/templates/404.html @@ -0,0 +1,38 @@ +{% extends "base.html" %} +{% load static %} +{% load i18n %} + +{% block title %}{% trans "404 Error" %}{% endblock %} + +{% block extra_head %} + +{% endblock %} + +{% block content %} + +
+ +

Not Found

+
+ + {% trans 'The page you are looking for could not be found.' %} +
+
+ +
+
+ +
+ {{ request_path }}
+ {{ exception }} +
+
+
+ + {% trans 'Take me Home' %} + {% trans 'Report a Bug' %} +
+ +{% endblock %} \ No newline at end of file