You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{%- trans path=pathto('copyright'), copyright=copyright|e %}© <ahref="{{ path }}">Copyright</a> {{ copyright
25
+
}}.{% endtrans %}
22
26
{%- else %}
23
-
{%- trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %}
27
+
{%- trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %}
28
+
{%- endif %}
24
29
{%- endif %}
25
-
{%- endif %}
26
30
27
-
{%- if build_id and build_url %}
31
+
{%- if build_id and build_url %}
28
32
<spanclass="build">
29
33
{#- Translators: Build is a noun, not a verb -#}
30
34
{%- trans %}Build{% endtrans -%}
31
35
<ahref="{{ build_url }}">{{ build_id }}</a>.
32
36
</span>
33
-
{%- elif commit %}
37
+
{%- elif commit %}
34
38
<spanclass="commit">
35
39
{#- Translators: the phrase "revision" comes from Git, referring to a commit #}
36
40
{%- trans %}Revision{% endtrans %} <code>{{ commit }}</code>.
37
41
</span>
38
-
{%- endif %}
39
-
{%- if last_updated %}
42
+
{%- endif %}
43
+
{%- if last_updated %}
40
44
<spanclass="lastupdated">
41
45
{%- trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
42
46
</span>
43
-
{%- endif -%}
47
+
{%- endif -%}
44
48
45
49
</p>
46
-
{%- endblock %}
50
+
{%- endblock %}
47
51
</div>
48
52
49
53
{% if show_sphinx %}
50
-
{%- set sphinx_web = '<ahref="https://www.sphinx-doc.org/">Sphinx</a>' %}
51
-
{%- set readthedocs_web = '<ahref="https://readthedocs.org">Read the Docs</a>' %}
52
-
{#- Translators: the variable "sphinx_web" is a link to the Sphinx project documentation with the text "Sphinx" #}
53
-
{%- trans sphinx_web=sphinx_web, readthedocs_web=readthedocs_web %}Built with {{ sphinx_web }} using a{% endtrans %}
54
-
{#- Translators: "theme" refers to a theme for Sphinx, which alters the appearance of the generated documenation #}
55
-
<ahref="https://github.com/readthedocs/sphinx_rtd_theme">{% trans %}theme{% endtrans %}</a>
56
-
{#- Translators: this is always used as "provided by Read the Docs", and should not imply Read the Docs is an author of the generated documentation. #}
57
-
{% trans %}provided by {{ readthedocs_web }}{% endtrans %}.
54
+
{%- set sphinx_web = '<ahref="https://www.sphinx-doc.org/">Sphinx</a>' %}
55
+
{%- set readthedocs_web = '<ahref="https://readthedocs.org">Read the Docs</a>' %}
56
+
{#- Translators: the variable "sphinx_web" is a link to the Sphinx project documentation with the text "Sphinx" #}
57
+
{%- trans sphinx_web=sphinx_web, readthedocs_web=readthedocs_web %}Built with {{ sphinx_web }} using a{% endtrans %}
58
+
{#- Translators: "theme" refers to a theme for Sphinx, which alters the appearance of the generated documenation #}
59
+
<ahref="https://github.com/readthedocs/sphinx_rtd_theme">{% trans %}theme{% endtrans %}</a>
60
+
{#- Translators: this is always used as "provided by Read the Docs", and should not imply Read the Docs is an author
61
+
of the generated documentation. #}
62
+
{% trans %}provided by {{ readthedocs_web }}{% endtrans %}.
{# this is used when loading the search index using $.ajax fails,
23
+
such as on Chrome for documents on localhost #}
24
+
<scriptid="searchindexloader"></script>
25
+
{{ super() }}
26
26
{% endblock %}
27
27
{% block body %}
28
-
<noscript>
28
+
<noscript>
29
29
<divid="fallback" class="admonition warning">
30
30
<pclass="last">
31
31
{% trans trimmed %}Please activate JavaScript to enable the search
32
32
functionality.{% endtrans %}
33
33
</p>
34
34
</div>
35
-
</noscript>
35
+
</noscript>
36
36
37
-
{% if search_performed %}
38
-
{# Translators: Search is a noun, not a verb #}
39
-
<h2>{{ _('Search Results') }}</h2>
40
-
{% if not search_results %}
41
-
<p>{{ _('Your search did not match any documents. Please make sure that all words are spelled correctly and that you\'ve selected enough categories.') }}</p>
42
-
{% endif %}
43
-
{% endif %}
44
-
<divid="search-results">
37
+
{% if search_performed %}
38
+
{# Translators: Search is a noun, not a verb #}
39
+
<h2>{{ _('Search Results') }}</h2>
40
+
{% if not search_results %}
41
+
<p>{{ _('Your search did not match any documents. Please make sure that all words are spelled correctly and that you\'ve
42
+
selected enough categories.') }}</p>
43
+
{% endif %}
44
+
{% endif %}
45
+
<divid="search-results">
45
46
{% if search_results %}
46
-
<ul>
47
+
<ul>
47
48
{% for href, caption, context in search_results %}
0 commit comments