2013-11-04 06:11:18 +08:00
< footer >
2013-11-05 07:18:33 +08:00
{% if next or prev %}
2014-01-15 09:54:37 +08:00
< div class = "rst-footer-buttons" role = "navigation" aria-label = "footer navigation" >
2013-11-05 07:18:33 +08:00
{% if next %}
2014-03-28 23:59:45 +08: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-11-05 07:18:33 +08:00
{% endif %}
2013-11-05 07:33:35 +08:00
{% if prev %}
2014-02-04 05:05:53 +08: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-11-05 07:33:35 +08:00
{% endif %}
2013-11-05 07:18:33 +08:00
< / div >
{% endif %}
2013-11-04 06:11:18 +08:00
< hr / >
2014-01-15 09:54:37 +08: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-11-04 06:11:18 +08:00
{%- endif %}
2014-01-15 09:54:37 +08:00
{%- if last_updated %}
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
{%- endif %}
< / p >
< / div >
2013-11-04 06:11:18 +08:00
2014-02-05 16:37:33 +08:00
{%- if show_sphinx %}
2014-10-14 06:24:13 +08: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 %}.
2014-02-05 16:37:33 +08:00
{%- endif %}
2013-11-04 06:11:18 +08:00
< / footer >