aboutsummaryrefslogtreecommitdiff
path: root/xreadthedocs/footer.html
diff options
context:
space:
mode:
Diffstat (limited to 'xreadthedocs/footer.html')
-rw-r--r--xreadthedocs/footer.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/xreadthedocs/footer.html b/xreadthedocs/footer.html
new file mode 100644
index 0000000..9f707cd
--- /dev/null
+++ b/xreadthedocs/footer.html
@@ -0,0 +1,23 @@
+<footer>
+ {% if next_page or previous_page %}
+ <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
+ {% if next_page %}
+ <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>
+ {% endif %}
+ {% if previous_page %}
+ <a href="{{ previous_page.url }}" class="btn btn-neutral" title="{{ previous_page.title }}"><span class="icon icon-circle-arrow-left"></span> Previous</a>
+ {% endif %}
+ </div>
+ {% endif %}
+
+ <hr/>
+
+ <div role="contentinfo">
+ <!-- Copyright etc -->
+ {% if copyright %}
+ <p>{{ copyright }}</p>
+ {% endif %}
+ </div>
+
+ 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>.
+</footer>