summaryrefslogtreecommitdiff
path: root/searx/templates/legacy/404.html
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2016-09-22 23:51:07 +0200
committerAdam Tauber <asciimoo@gmail.com>2016-09-22 23:51:07 +0200
commitbee7b497a300622f5ba2b619817f5c89c29ae871 (patch)
tree525c3d85020cedd88663a4bb4a0e18c54500044b /searx/templates/legacy/404.html
parentaaf5d506e51197603922d7b9d259c0f4e498f62b (diff)
[mod] rename "default" theme to "legacy"
Diffstat (limited to 'searx/templates/legacy/404.html')
-rw-r--r--searx/templates/legacy/404.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/searx/templates/legacy/404.html b/searx/templates/legacy/404.html
new file mode 100644
index 000000000..05c14e155
--- /dev/null
+++ b/searx/templates/legacy/404.html
@@ -0,0 +1,9 @@
+{% extends "legacy/base.html" %}
+{% block content %}
+<div class="center">
+ <h1>{{ _('Page not found') }}</h1>
+ {% autoescape false %}
+ <p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.decode('utf-8').format(url_for('index'), _('search page'))) }}</p>
+ {% endautoescape %}
+</div>
+{% endblock %}