{%- extends "layout.html" %} {% set title = _('Search') %} {%- block scripts %} {{ super() }} {%- endblock %} {% block extrahead %} {{ super() }} {% endblock %} {% block body %}

{{ _('Search') }}

{% block scriptwarning %} {% endblock %} {% block searchtext %}

{% trans %}Searching for multiple words only shows matches that contain all words.{% endtrans %}

{% endblock %} {% block searchbox %}
{% endblock %} {% block searchresults %} {% if search_performed %}

{{ _('Search Results') }}

{% if not search_results %}

{{ _('Your search did not match any documents. Please make sure that all words are spelled correctly.') }}

{% endif %} {% endif %}
{% if search_results %}
    {% for href, caption, context in search_results %}
  • {{ caption }}
    {{ context|e }}
  • {% endfor %}
{% endif %}
{% endblock %} {% endblock %}