{# basic/search2.html ~~~~~~~~~~~~~~~~~ Template for the search page, but only with results, because search box and TOC will be displayed al right column. based on search.html page from Sphinx basic theme :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {% extends "layout.html" %} {% set title = _('Search') %} {% set script_files = script_files + ['_static/searchtools.js'] %} {% block extrahead %} {{ super() }} {% endblock %} {% block body %}

{% trans %}Please activate JavaScript to enable the search functionality.{% endtrans %}

{% if search_performed %}

{{ _('Search Results') }}

{% if not search_results %}

{{ _('Your search did not match any results.') }}

{% endif %} {% endif %}
{% if search_results %} {% endif %}
{% endblock %}