1
0
mirror of https://github.com/searxng/searxng.git synced 2024-07-02 23:40:44 +02:00
searxng/searx/templates/pix-art/404.html
2017-05-15 12:02:30 +02:00

10 lines
319 B
HTML

{% extends "pix-art/base.html" %}
{% block content %}
<div class="center">
<h1>{{ _('Page not found') }}</h1>
{% autoescape false %}
<p>{{ _('Go to %(search_page)s.', search_page=unicode('<a href="{}">{}</a>').format(url_for('index'), _('search page'))) }}</p>
{% endautoescape %}
</div>
{% endblock %}