2016-09-22 21:51:07 +00:00
|
|
|
{% extends "legacy/base.html" %}
|
2016-08-24 17:53:09 +00:00
|
|
|
{% block content %}
|
|
|
|
<div class="center">
|
|
|
|
<h1>{{ _('Page not found') }}</h1>
|
2016-09-04 16:38:25 +00:00
|
|
|
{% autoescape false %}
|
2016-11-30 17:43:03 +00:00
|
|
|
<p>{{ _('Go to %(search_page)s.', search_page=unicode('<a href="{}">{}</a>').format(url_for('index'), _('search page'))) }}</p>
|
2016-09-04 16:38:25 +00:00
|
|
|
{% endautoescape %}
|
2016-08-24 17:53:09 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|