summary refs log tree commit diff stats
path: root/src/themes/serene/templates/404.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/themes/serene/templates/404.html')
-rw-r--r--src/themes/serene/templates/404.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/themes/serene/templates/404.html b/src/themes/serene/templates/404.html
new file mode 100644
index 0000000..1e924de
--- /dev/null
+++ b/src/themes/serene/templates/404.html
@@ -0,0 +1,14 @@
+{% extends "_base.html" %}
+
+{% block page %}not-found{% endblock page%}
+{% block lang %}{{ config.default_language }}{% endblock lang %}
+{% block title %}404{% endblock title %}
+
+{% block content %}
+<div class="wrapper">
+  <p class="error">
+    {{ config.extra.not_found_error_text }}
+  </p>
+  <a class="instant" href="{{ get_url(path='/') }}">{{ config.extra.not_found_recover_text }}</a>
+</div>
+{% endblock %}