2013-11-04 06:11:18 +08:00
< footer >
2013-11-05 07:18:33 +08:00
{% if next or prev %}
< div class = "rst-footer-buttons" >
{% if next %}
< a href = "{{ next.link|e }}" class = "btn btn-neutral float-right" title = "{{ next.title|striptags|e }}" / > Next < span class = "icon icon-circle-arrow-right" > < / span > < / a >
{% endif %}
< / div >
{% if prev %}
< a href = "{{ prev.link|e }}" class = "btn btn-neutral" title = "{{ prev.title|striptags|e }}" > < span class = "icon icon-circle-arrow-left" > < / span > Previous< / a >
{% endif %}
{% endif %}
2013-11-04 06:11:18 +08:00
< hr / >
2013-11-04 07:33:10 +08:00
< p >
2013-11-04 06:11:18 +08:00
{%- 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 %}
{%- endif %}
{%- if last_updated %}
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
{%- endif %}
2013-11-04 07:33:10 +08:00
< / p >
2013-11-04 06:11:18 +08:00
2013-11-05 06:14:48 +08:00
{% trans %}< a href = "https://www.github.com/snide/sphinx_rtd_theme" > Sphinx theme< / a > provided by < a href = "http://readthedocs.org" > Read the Docs< / a > {% endtrans %}
2013-11-04 06:11:18 +08:00
< / footer >