2013-12-06 17:27:56 +01:00
< footer >
{% if next or prev %}
2014-02-02 10:35:21 +01:00
< div class = "rst-footer-buttons" role = "navigation" aria-label = "footer navigation" >
2013-12-06 17:27:56 +01:00
{% if next %}
2015-05-07 14:09:57 +02:00
< a href = "{{ next.link|e }}" class = "btn btn-neutral float-right" title = "{{ next.title|striptags|e }}" accesskey = "n" > Next < span class = "fa fa-arrow-circle-right" > < / span > < / a >
2013-12-06 17:27:56 +01:00
{% endif %}
{% if prev %}
2015-05-07 14:09:57 +02:00
< a href = "{{ prev.link|e }}" class = "btn btn-neutral" title = "{{ prev.title|striptags|e }}" accesskey = "p" > < span class = "fa fa-arrow-circle-left" > < / span > Previous< / a >
2013-12-06 17:27:56 +01:00
{% endif %}
< / div >
{% endif %}
< hr / >
2014-02-02 10:35:21 +01:00
< div role = "contentinfo" >
< p >
{%- if show_copyright %}
{%- if hasdoc('copyright') %}
{% trans path=pathto('copyright'), copyright=copyright|e %}© < a href = "{{ path }}" > Copyright< / a > {{ copyright }}.{% endtrans %}
{%- else %}
{% trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %}
{%- endif %}
2013-12-06 17:27:56 +01:00
{%- endif %}
2015-10-24 12:30:51 +02:00
{%- if build_id and build_url %}
{% trans build_url=build_url, build_id=build_id %}
< span class = "build" >
Build
< a href = "{{ build_url }}" > {{ build_id }}< / a > .
< / span >
{% endtrans %}
{%- elif commit %}
{% trans commit=commit %}
< span class = "commit" >
Revision < code > {{ commit }}< / code > .
< / span >
{% endtrans %}
{%- elif last_updated %}
2014-02-02 10:35:21 +01:00
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
{%- endif %}
2015-10-24 12:30:51 +02:00
2014-02-02 10:35:21 +01:00
< / p >
< / div >
2013-12-06 17:27:56 +01:00
2015-04-01 16:11:07 +02:00
{%- if show_sphinx %}
2015-01-11 09:20:46 +01:00
{% trans %}Built with < a href = "http://sphinx-doc.org/" > Sphinx< / a > using a < a href = "https://github.com/snide/sphinx_rtd_theme" > theme< / a > provided by < a href = "https://readthedocs.org" > Read the Docs< / a > {% endtrans %}.
2015-04-01 16:11:07 +02:00
{%- endif %}
2015-10-24 12:30:51 +02:00
{%- block extrafooter %} {% endblock %}
2013-12-06 17:27:56 +01:00
< / footer >
2015-04-01 16:11:07 +02:00