searxng/searx/templates/legacy/404.html

10 lines
309 B
HTML
Raw Normal View History

{% extends "legacy/base.html" %}
2016-08-24 17:53:09 +00:00
{% block content %}
<div class="center">
<h1>{{ _('Page not found') }}</h1>
2016-09-04 16:38:25 +00:00
{% autoescape false %}
2020-08-11 13:24:41 +00:00
<p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.format(url_for('index'), _('search page'))) }}</p>
2016-09-04 16:38:25 +00:00
{% endautoescape %}
2016-08-24 17:53:09 +00:00
</div>
{% endblock %}