~james-page/charm-helpers/lp1531102

« back to all changes in this revision

Viewing changes to docs/_themes/sphinx_rtd_theme/footer.html

  • Committer: Tim Van Steenburgh
  • Date: 2014-06-09 14:56:35 UTC
  • mto: This revision was merged to the branch mainline in revision 173.
  • Revision ID: tim.van.steenburgh@canonical.com-20140609145635-93wfxbsk5bz9pjy3
Add docs skeleton

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 }}">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 }}"><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 last_updated %}
 
26
      {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
 
27
    {%- endif %}
 
28
    </p>
 
29
  </div>
 
30
 
 
31
  {% trans %}<a href="https://github.com/snide/sphinx_rtd_theme">Sphinx theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>{% endtrans %}
 
32
</footer>