searxng/searx/templates/simple/404.html

10 lines
309 B
HTML
Raw Normal View History

2017-02-12 14:06:01 +00:00
{% extends "simple/base.html" %}
{% block content %}
<div class="center">
<h1>{{ _('Page not found') }}</h1>
{% 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>
2017-02-12 14:06:01 +00:00
{% endautoescape %}
</div>
{% endblock %}