summaryrefslogtreecommitdiff
path: root/sphinx_rtd_theme/footer.html
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-05-11 03:03:21 -0400
committerJordan Wiens <jordan@psifertex.com>2019-05-11 03:03:21 -0400
commitc1adc42bbf31fa3b327f9ee78ff86e6ba0e89bd5 (patch)
tree2e2a35285eaae8a11bf04e2933b5666d49e8ce01 /sphinx_rtd_theme/footer.html
parent00018d6ae7a8c4180bdaddd0ca127cff13509aaa (diff)
moving rtd modifications to a submodule, moving to py3 for docs
Diffstat (limited to 'sphinx_rtd_theme/footer.html')
-rw-r--r--sphinx_rtd_theme/footer.html52
1 files changed, 0 insertions, 52 deletions
diff --git a/sphinx_rtd_theme/footer.html b/sphinx_rtd_theme/footer.html
deleted file mode 100644
index f4396eec..00000000
--- a/sphinx_rtd_theme/footer.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<footer>
- {% if next or prev %}
- <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
- {% if next %}
- <a href="{{ next.link|e }}" class="btn btn-neutral float-right" title="{{ next.title|striptags|e }}" accesskey="n">Next <span class="fa fa-arrow-circle-right"></span></a>
- {% endif %}
- {% if prev %}
- <a href="{{ prev.link|e }}" class="btn btn-neutral" title="{{ prev.title|striptags|e }}" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous</a>
- {% endif %}
- </div>
- {% endif %}
-
- <hr/>
-
- <div role="contentinfo">
- <p>
- {%- if show_copyright %}
- {%- if hasdoc('copyright') %}
- {% trans path=pathto('copyright'), copyright=copyright|e %}&copy; <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
- {%- else %}
- {% trans copyright=copyright|e %}&copy; Copyright {{ copyright }}.{% endtrans %}
- {%- endif %}
- {%- endif %}
-
- {%- if build_id and build_url %}
- {% trans build_url=build_url, build_id=build_id %}
- <span class="build">
- Build
- <a href="{{ build_url }}">{{ build_id }}</a>.
- </span>
- {% endtrans %}
- {%- elif commit %}
- {% trans commit=commit %}
- <span class="commit">
- Revision <code>{{ commit }}</code>.
- </span>
- {% endtrans %}
- {%- elif last_updated %}
- {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
- {%- endif %}
-
- </p>
- </div>
-
- {%- if show_sphinx %}
- {% trans %}Built with <a href="http://sphinx-doc.org/">Sphinx</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>{% endtrans %}.
- {%- endif %}
-
- {%- block extrafooter %} {% endblock %}
-
-</footer>
-