summaryrefslogtreecommitdiff
path: root/searx/templates/oscar/404.html
diff options
context:
space:
mode:
Diffstat (limited to 'searx/templates/oscar/404.html')
-rw-r--r--searx/templates/oscar/404.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/searx/templates/oscar/404.html b/searx/templates/oscar/404.html
new file mode 100644
index 0000000..5a50880
--- /dev/null
+++ b/searx/templates/oscar/404.html
@@ -0,0 +1,9 @@
+{% extends "oscar/base.html" %}
+{% block content %}
+<div class="text-center">
+ <h1>{{ _('Page not found') }}</h1>
+ {% autoescape false %}
+ <p>{{ _('Go to %(search_page)s.', search_page=unicode('<a href="{}">{}</a>').format(url_for('index'), _('search page'))) }}</p>
+ {% endautoescape %}
+</div>
+{% endblock %}