2013-12-06 17:27:56 +01:00
< footer >
2022-07-12 15:23:12 +02:00
{%- if (theme_prev_next_buttons_location == 'bottom' or theme_prev_next_buttons_location == 'both') and (next or prev) %}
{#- Translators: This is an ARIA section label for the footer section of the page. -#}
< div class = "rst-footer-buttons" role = "navigation" aria-label = "{{ _('Footer') }}" >
{%- if prev %}
< a href = "{{ prev.link|e }}" class = "btn btn-neutral float-left" title = "{{ prev.title|striptags|e }}" accesskey = "p" rel = "prev" > < span class = "fa fa-arrow-circle-left" aria-hidden = "true" > < / span > {{ _('Previous') }}< / a >
{%- endif %}
{%- if next %}
< a href = "{{ next.link|e }}" class = "btn btn-neutral float-right" title = "{{ next.title|striptags|e }}" accesskey = "n" rel = "next" > {{ _('Next') }} < span class = "fa fa-arrow-circle-right" aria-hidden = "true" > < / span > < / a >
{%- endif %}
2013-12-06 17:27:56 +01:00
< / div >
2022-07-12 15:23:12 +02:00
{%- endif %}
2013-12-06 17:27:56 +01:00
< hr / >
2014-02-02 10:35:21 +01:00
< div role = "contentinfo" >
2022-07-12 15:23:12 +02:00
{%- block contentinfo %}
2014-02-02 10:35:21 +01:00
< p >
{%- if show_copyright %}
{%- if hasdoc('copyright') %}
2022-07-12 15:23:12 +02:00
{%- trans path=pathto('copyright'), copyright=copyright|e %}© < a href = "{{ path }}" > Copyright< / a > {{ copyright }}.{% endtrans %}
2014-02-02 10:35:21 +01:00
{%- else %}
2022-07-12 15:23:12 +02:00
{%- trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %}
2014-02-02 10:35:21 +01:00
{%- endif %}
2013-12-06 17:27:56 +01:00
{%- endif %}
2015-10-24 12:30:51 +02:00
{%- if build_id and build_url %}
2020-07-24 13:18:59 +02:00
< span class = "build" >
2022-07-12 15:23:12 +02:00
{#- Translators: Build is a noun, not a verb -#}
{%- trans %}Build{% endtrans -%}
2020-07-24 13:18:59 +02:00
< a href = "{{ build_url }}" > {{ build_id }}< / a > .
< / span >
2015-10-24 12:30:51 +02:00
{%- elif commit %}
2020-07-24 13:18:59 +02:00
< span class = "commit" >
2022-07-12 15:23:12 +02:00
{#- Translators: the phrase "revision" comes from Git, referring to a commit #}
{%- trans %}Revision{% endtrans %} < code > {{ commit }}< / code > .
2020-07-24 13:18:59 +02:00
< / span >
{%- endif %}
{%- if last_updated %}
< span class = "lastupdated" >
2022-07-12 15:23:12 +02:00
{%- trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
2020-07-24 13:18:59 +02:00
< / span >
2022-07-12 15:23:12 +02:00
{%- endif -%}
2015-10-24 12:30:51 +02:00
2014-02-02 10:35:21 +01:00
< / p >
2022-07-12 15:23:12 +02:00
{%- endblock %}
2014-02-02 10:35:21 +01:00
< / div >
2013-12-06 17:27:56 +01:00
2022-07-12 15:23:12 +02:00
{% if show_sphinx %}
{%- set sphinx_web = '< a href = "https://www.sphinx-doc.org/" > Sphinx< / a > ' %}
{%- set readthedocs_web = '< a href = "https://readthedocs.org" > Read the Docs< / a > ' %}
{#- Translators: the variable "sphinx_web" is a link to the Sphinx project documentation with the text "Sphinx" #}
{%- trans sphinx_web=sphinx_web, readthedocs_web=readthedocs_web %}Built with {{ sphinx_web }} using a{% endtrans %}
{#- Translators: "theme" refers to a theme for Sphinx, which alters the appearance of the generated documentation #}
2020-07-24 13:18:59 +02:00
< a href = "https://github.com/readthedocs/sphinx_rtd_theme" > {% trans %}theme{% endtrans %}< / a >
2022-07-12 15:23:12 +02:00
{#- 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. #}
2020-07-24 13:18:59 +02:00
{% trans %}provided by {{ readthedocs_web }}{% endtrans %}.
2022-07-12 15:23:12 +02:00
{% endif %}
2015-04-01 16:11:07 +02:00
2015-10-24 12:30:51 +02:00
{%- block extrafooter %} {% endblock %}
2013-12-06 17:27:56 +01:00
< / footer >