vector-bundles-sagemath/docs/themes/sage-classic/search.html

2.0 KiB

{# basic/search.html ~~~~~~~~~~~~~~~~~ Template for the search page. ©️ Copyright 2007-2021 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- 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 %}

{% trans %}Note also that you can also call "search_src(...)" while running Sage to search Sage's source code.{% endtrans %}

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

{{ _('Search Results') }}

{% if not search_results %}

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

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