404.html 322 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=unicode('<a href="{}">{}</a>').format(url_for('index'), _('search page'))) }}</p>
  7. {% endautoescape %}
  8. </div>
  9. {% endblock %}