404.html 313 B

12345678910
  1. {% extends "oscar/base.html" %}
  2. {% block content %}
  3. <div class="text-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 %}