footer.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <footer>
  2. {% if next or prev %}
  3. <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
  4. {% if next %}
  5. <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>
  6. {% endif %}
  7. {% if prev %}
  8. <a href="{{ prev.link|e }}" class="btn btn-neutral" title="{{ prev.title|striptags|e }}"><span class="fa fa-arrow-circle-left"></span> Previous</a>
  9. {% endif %}
  10. </div>
  11. {% endif %}
  12. <hr/>
  13. <div role="contentinfo">
  14. <p>
  15. {%- if show_copyright %}
  16. {%- if hasdoc('copyright') %}
  17. {% trans path=pathto('copyright'), copyright=copyright|e %}&copy; <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
  18. {%- else %}
  19. {% trans copyright=copyright|e %}&copy; Copyright {{ copyright }}.{% endtrans %}
  20. {%- endif %}
  21. {%- endif %}
  22. {%- if last_updated %}
  23. {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
  24. {%- endif %}
  25. </p>
  26. </div>
  27. {% trans %}Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a modified version of the <a href="https://github.com/snide/sphinx_rtd_theme">Read the Docs theme</a>{% endtrans %}.
  28. </footer>