source: rtems-docs/common/sphinx_rtd_theme_rtems/footer.html @ a316b1f

4.115
Last change on this file since a316b1f was a316b1f, checked in by Amar Takhar <amar@…>, on 01/20/16 at 01:37:04

Add support for singlehtml (inlined) HTML file, plus some other fixes.

  • This is still broken.
  • Rename sphinx_rtd_theme so it doesn't pickup locally installed ones
  • Add a hack to theme.css to get around inliner bug.
  • Some unrelated fixups in common/waf.py

Unfortunatly several dozen fixes got merged into this.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1<footer>
2  {% if 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">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"><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 %}&copy; <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
20      {%- else %}
21        {% trans copyright=copyright|e %}&copy; 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
Note: See TracBrowser for help on using the repository browser.