github.com/true-sqn/fabric@v2.1.1+incompatible/docs/source/_templates/footer.html (about)

     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 %}&copy; <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
    20        {%- else %}
    21          {% trans copyright=copyright|e %}&copy; Copyright Hyperledger 2020.{% endtrans %}
    22        {%- endif %}
    23      {%- endif %}
    24      <br>
    25        <br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>
    26        <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">
    27          <img alt="Creative Commons License" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a>
    28      {%- if build_id and build_url %}
    29        {% trans build_url=build_url, build_id=build_id %}
    30          <span class="build">
    31            Build
    32            <a href="{{ build_url }}">{{ build_id }}</a>.
    33          </span>
    34        {% endtrans %}
    35      {%- elif commit %}
    36        {% trans commit=commit %}
    37          <span class="commit">
    38            Revision <code>{{ commit }}</code>.
    39          </span>
    40        {% endtrans %}
    41      {%- elif last_updated %}
    42        {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
    43      {%- endif %}
    44  
    45      </p>
    46    </div>
    47  
    48    {%- if show_sphinx %}
    49    {% 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 %}.
    50    {%- endif %}
    51  
    52    {%- block extrafooter %} {% endblock %}
    53  
    54  </footer>