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 %}
2014-02-04 14:05:08 +01:00
< a href = "{{ next.link|e }}" class = "btn btn-neutral float-right" title = "{{ next.title|striptags|e }}" / > Next < span class = "fa fa-arrow-circle-right" > < / span > < / a >
2013-12-06 17:27:56 +01:00
{% endif %}
{% if prev %}
2014-02-04 14:05:08 +01:00
< a href = "{{ prev.link|e }}" class = "btn btn-neutral" title = "{{ prev.title|striptags|e }}" > < 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 %}
2014-02-02 10:35:21 +01:00
{%- if last_updated %}
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
{%- endif %}
< / p >
< / div >
2013-12-06 17:27:56 +01:00
2014-02-02 10:35:21 +01:00
{% trans %}< a href = "https://github.com/snide/sphinx_rtd_theme" > Sphinx theme< / a > provided by < a href = "https://readthedocs.org" > Read the Docs< / a > {% endtrans %}
2013-12-06 17:27:56 +01:00
< / footer >