searxng/searx/templates/oscar/404.html

10 lines
313 B
HTML
Raw Normal View History

2016-08-24 17:53:09 +00:00
{% extends "oscar/base.html" %}
{% block content %}
<div class="text-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 %}