aboutsummaryrefslogtreecommitdiff
path: root/gocryptfs-readthedocs/footer.html
diff options
context:
space:
mode:
authorrfjakob2018-01-31 09:26:45 +0100
committerGitHub2018-01-31 09:26:45 +0100
commit7168f06d86ccebdeba3fb2fe685d3ff0298b4264 (patch)
treef5de197263681ddf9a076cc93ab5996db68b19e4 /gocryptfs-readthedocs/footer.html
parent246c2639be0fb9fb027b1878479d86cd90b7731a (diff)
parent9c73c07fda84fd31fd37fd2f9bf56312ca0896c8 (diff)
Merge pull request #4 from taysu/mkdocs-updates
Updates so site builds with mkdocs 0.17.2
Diffstat (limited to 'gocryptfs-readthedocs/footer.html')
-rw-r--r--gocryptfs-readthedocs/footer.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/gocryptfs-readthedocs/footer.html b/gocryptfs-readthedocs/footer.html
new file mode 100644
index 0000000..1735942
--- /dev/null
+++ b/gocryptfs-readthedocs/footer.html
@@ -0,0 +1,28 @@
+<footer>
+ {%- block next_prev %}
+ {% if page and page.next_page or page.previous_page %}
+ <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
+ {% if page.next_page %}
+ <a href="{{ page.next_page.url }}" class="btn btn-neutral float-right" title="{{ page.next_page.title }}">Next <span class="icon icon-circle-arrow-right"></span></a>
+ {% endif %}
+ {% if page.previous_page %}
+ <a href="{{ page.previous_page.url }}" class="btn btn-neutral" title="{{ page.previous_page.title }}"><span class="icon icon-circle-arrow-left"></span> Previous</a>
+ {% endif %}
+ </div>
+ {% endif %}
+ {%- endblock %}
+
+ <hr/>
+
+ <div role="contentinfo">
+ <!-- Copyright etc -->
+ {% if config.copyright %}
+ <p>{{ config.copyright }}</p>
+ {% endif %}
+ </div>
+
+ <div class="builtwith">
+ 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>.
+ </div>
+
+</footer>