searxng-beetroot/beetroot_template/404.html

10 lines
311 B
HTML
Raw Normal View History

2023-04-04 21:23:00 +02:00
{% extends "beetroot/base.html" %}
2023-03-19 10:58:17 +01:00
{% block content %}
<div class="center">
<h1>{{ _('Page not found') }}</h1>
{% autoescape false %}
<p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.format(url_for('index'), _('search page'))) }}</p>
{% endautoescape %}
</div>
{% endblock %}