0
|
1 |
<footer>
|
|
2 |
{% if (theme_prev_next_buttons_location == 'bottom' or theme_prev_next_buttons_location == 'both') and (next or prev) %}
|
|
3 |
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
|
|
4 |
{% if next %}
|
|
5 |
<a href="{{ next.link|e }}" class="btn btn-neutral float-right" title="{{ next.title|striptags|e }}" accesskey="n" rel="next">{{ _('Next') }} <span class="fa fa-arrow-circle-right"></span></a>
|
|
6 |
{% endif %}
|
|
7 |
{% if prev %}
|
|
8 |
<a href="{{ prev.link|e }}" class="btn btn-neutral" title="{{ prev.title|striptags|e }}" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> {{ _('Previous') }}</a>
|
|
9 |
{% endif %}
|
|
10 |
</div>
|
|
11 |
{% endif %}
|
|
12 |
|
|
13 |
<hr/>
|
|
14 |
|
|
15 |
<div role="contentinfo">
|
|
16 |
<p>
|
|
17 |
{%- if show_copyright %}
|
|
18 |
{%- if hasdoc('copyright') %}
|
|
19 |
{% trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
|
|
20 |
{%- else %}
|
|
21 |
{% trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %}
|
|
22 |
{%- endif %}
|
|
23 |
{%- endif %}
|
|
24 |
|
|
25 |
{%- if build_id and build_url %}
|
|
26 |
{% trans build_url=build_url, build_id=build_id %}
|
|
27 |
<span class="build">
|
|
28 |
Build
|
|
29 |
<a href="{{ build_url }}">{{ build_id }}</a>.
|
|
30 |
</span>
|
|
31 |
{% endtrans %}
|
|
32 |
{%- elif commit %}
|
|
33 |
{% trans commit=commit %}
|
|
34 |
<span class="commit">
|
|
35 |
Revision <code>{{ commit }}</code>.
|
|
36 |
</span>
|
|
37 |
{% endtrans %}
|
|
38 |
{%- elif last_updated %}
|
|
39 |
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
|
|
40 |
{%- endif %}
|
|
41 |
|
|
42 |
</p>
|
|
43 |
</div>
|
|
44 |
|
|
45 |
{%- if show_sphinx %}
|
|
46 |
{% 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 %}.
|
|
47 |
{%- endif %}
|
|
48 |
|
|
49 |
{%- block extrafooter %} {% endblock %}
|
|
50 |
|
|
51 |
</footer>
|
|
52 |
|