92d57796dd
* update theme.conf, header, footer, etc. * clean up layout.html * move large Ansible changes out of theme.css * maxify theme to help merge * remove redundancies, fix top nav bar * add Ansible color to header and left-nav menu
62 lines
2.2 KiB
HTML
62 lines
2.2 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/>
|
|
|
|
{# Ansible search with Swift - do not remove #}
|
|
<script type="text/javascript">
|
|
(function(w,d,t,u,n,s,e){w['SwiftypeObject']=n;w[n]=w[n]||function(){
|
|
(w[n].q=w[n].q||[]).push(arguments);};s=d.createElement(t);
|
|
e=d.getElementsByTagName(t)[0];s.async=1;s.src=u;e.parentNode.insertBefore(s,e);
|
|
})(window,document,'script','//s.swiftypecdn.com/install/v2/st.js','_st');
|
|
|
|
_st('install','yABGvz2N8PwcwBxyfzUc','2.0.0');
|
|
</script>
|
|
|
|
<div role="contentinfo">
|
|
<p>
|
|
{%- if show_copyright %}
|
|
{%- if hasdoc('copyright') %}
|
|
{% trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }}{% endtrans %}
|
|
{%- else %}
|
|
{% trans copyright=copyright|e %}© Copyright {{ copyright }}{% endtrans %}
|
|
{%- endif %}
|
|
{%- endif %}
|
|
|
|
{%- if build_id and build_url %}
|
|
{% trans build_url=build_url, build_id=build_id %}
|
|
<span class="build">
|
|
Build
|
|
<a href="{{ build_url }}">{{ build_id }}</a>.
|
|
</span>
|
|
{% endtrans %}
|
|
{%- elif commit %}
|
|
{% trans commit=commit %}
|
|
<span class="commit">
|
|
Revision <code>{{ commit }}</code>.
|
|
</span>
|
|
{% endtrans %}
|
|
{%- elif last_updated %}
|
|
<span class="lastupdated">
|
|
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
|
|
</span>
|
|
{%- endif %}
|
|
|
|
</p>
|
|
</div>
|
|
|
|
{%- if show_sphinx %}
|
|
{% trans %}Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/rtfd/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>{% endtrans %}.
|
|
{%- endif %}
|
|
|
|
{%- block extrafooter %} {% endblock %}
|
|
</footer>
|