footer.html 1.1 KB

1234567891011121314151617181920212223242526
  1. <footer>
  2. {%- block next_prev %}
  3. {% if config.theme.prev_next_buttons_location|lower in ['bottom', 'both']
  4. and page and (page.next_page or page.previous_page) %}
  5. <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
  6. {% if page.next_page %}
  7. <a href="{{ page.next_page.url|url }}" class="btn btn-neutral float-right" title="{{ page.next_page.title }}">Next <span class="icon icon-circle-arrow-right"></span></a>
  8. {% endif %}
  9. {% if page.previous_page %}
  10. <a href="{{ page.previous_page.url|url }}" class="btn btn-neutral" title="{{ page.previous_page.title }}"><span class="icon icon-circle-arrow-left"></span> Previous</a>
  11. {% endif %}
  12. </div>
  13. {% endif %}
  14. {%- endblock %}
  15. <hr/>
  16. <div role="contentinfo">
  17. <!-- Copyright etc -->
  18. {% if config.copyright %}
  19. <p>{{ config.copyright }}</p>
  20. {% endif %}
  21. </div>
  22. Built with <a href="https://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>.
  23. </footer>