29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<footer>
|
|
{% if next or prev %}
|
|
<div class="rst-footer-buttons">
|
|
{% if next %}
|
|
<a href="{{ next.link|e }}" class="btn btn-neutral float-right" title="{{ next.title|striptags|e }}"/>Next <span class="icon icon-circle-arrow-right"></span></a>
|
|
{% endif %}
|
|
{% if prev %}
|
|
<a href="{{ prev.link|e }}" class="btn btn-neutral" title="{{ prev.title|striptags|e }}"><span class="icon icon-circle-arrow-left"></span> Previous</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<hr/>
|
|
|
|
<p>
|
|
© Copyright 2013-2014,
|
|
<a href="https://scalability.llnl.gov/">Lawrence Livermore National Laboratory</a>.
|
|
<br/>
|
|
Written by Todd Gamblin, <a href="mailto:tgamblin@llnl.gov">tgamblin@llnl.gov</a>, LLNL-CODE-647188
|
|
<br/>
|
|
|
|
{%- if last_updated %}
|
|
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
|
|
{%- endif %}
|
|
|
|
{% trans %}<br/><a href="https://www.github.com/snide/sphinx_rtd_theme">Sphinx theme</a> provided by <a href="http://readthedocs.org">Read the Docs</a>{% endtrans %}
|
|
</p>
|
|
</footer>
|