diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2016-09-04 18:38:25 +0200 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2016-09-04 18:38:25 +0200 |
| commit | c2f4d4449ddba0a3899a5d4098e2c5e451c83ac8 (patch) | |
| tree | 2618ae8d893fc532cac05de0ba045cac05f73ce8 /searx/templates/default | |
| parent | b4b02316173c911f2b12d7c41b9729b28bc9c32c (diff) | |
[fix] 404 page localization
Diffstat (limited to 'searx/templates/default')
| -rw-r--r-- | searx/templates/default/404.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/searx/templates/default/404.html b/searx/templates/default/404.html index 18012f2ac..dc968a109 100644 --- a/searx/templates/default/404.html +++ b/searx/templates/default/404.html @@ -2,6 +2,8 @@ {% block content %} <div class="center"> <h1>{{ _('Page not found') }}</h1> - <p>{{ _('Go to <a href="/">search page</a>.') }}</p> + {% autoescape false %} + <p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.format(url_for('index'), _('search page'))) }}</p> + {% endautoescape %} </div> {% endblock %} |