Separate src dir.
[fnp-django-template.git] / src / project_name / templates / 404.html
diff --git a/src/project_name/templates/404.html b/src/project_name/templates/404.html
new file mode 100644 (file)
index 0000000..74ee437
--- /dev/null
@@ -0,0 +1,14 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block title %}{% trans "Page not found" %}{% endblock %}
+
+{% block body %}
+
+<h1>{% trans "Page not found" %}</h1>
+
+<p class="notice">
+    {% trans "The page you were looking for doesn't exist." %}
+</p>
+
+{% endblock %}