footer.html 918 B

1234567891011121314151617181920212223
  1. <footer>
  2. {% if next_page or previous_page %}
  3. <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
  4. {% if next_page %}
  5. <a href="{{ next_page.url }}" class="btn btn-neutral float-right" title="{{ next_page.title }}">Next <span class="icon icon-circle-arrow-right"></span></a>
  6. {% endif %}
  7. {% if previous_page %}
  8. <a href="{{ previous_page.url }}" class="btn btn-neutral" title="{{ previous_page.title }}"><span class="icon icon-circle-arrow-left"></span> Previous</a>
  9. {% endif %}
  10. </div>
  11. {% endif %}
  12. <hr/>
  13. <div role="contentinfo">
  14. <!-- Copyright etc -->
  15. {% if copyright %}
  16. <p>{{ copyright }}</p>
  17. {% endif %}
  18. </div>
  19. Built with <a href="http://www.mkdocs.org">MkDocs</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>.
  20. </footer>