404.html 309 B

12345678910
  1. {% extends "simple/base.html" %}
  2. {% block content %}
  3. <div class="center">
  4. <h1>{{ _('Page not found') }}</h1>
  5. {% autoescape false %}
  6. <p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.format(url_for('index'), _('search page'))) }}</p>
  7. {% endautoescape %}
  8. </div>
  9. {% endblock %}