{# basic/search.html ~~~~~~~~~~~~~~~~~ Template for the search page. :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- extends "layout.html" %} {% set title = _('Search') %} {%- block scripts %} {{ super() }} {%- endblock %} {% block extra_head %} {{ super() }} {% endblock %} {% block body %}
{{ macros.h1(_('Search'), "search-documentation") }} {% block scriptwarning %} {% endblock %} {% if "search-field.html" not in sidebars %} {% block searchtext %}

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

{% endblock %} {% block searchbox %}
{% endblock %} {% endif %} {% 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 and that you\'ve selected enough categories.') }}

{% endif %} {% endif %} {% if search_results %} {% endif %}
{% endblock %} {% include "footer.html" %}
{% endblock %}