diff options
| author | Shivesh Mandalia <shivesh.mandalia@outlook.com> | 2020-03-03 02:36:22 +0000 |
|---|---|---|
| committer | Shivesh Mandalia <shivesh.mandalia@outlook.com> | 2020-03-03 02:36:22 +0000 |
| commit | f18364ec6522466afbdd64bdf563a54c9e6e4db9 (patch) | |
| tree | 9bee7890ee256e999327813c00f0d80cd73b2c11 /docs/source/_templates | |
| parent | faadd4e4eb901f7a49128b3b7e6a0a3ffbcd4664 (diff) | |
| download | GolemFlavor-f18364ec6522466afbdd64bdf563a54c9e6e4db9.tar.gz GolemFlavor-f18364ec6522466afbdd64bdf563a54c9e6e4db9.zip | |
documentation
Diffstat (limited to 'docs/source/_templates')
| -rw-r--r-- | docs/source/_templates/footer.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/docs/source/_templates/footer.html b/docs/source/_templates/footer.html new file mode 100644 index 0000000..554e08e --- /dev/null +++ b/docs/source/_templates/footer.html @@ -0,0 +1,53 @@ +<footer> + {% if (theme_prev_next_buttons_location == 'bottom' or theme_prev_next_buttons_location == 'both') and (next or prev) %} + <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation"> + {% if next %} + <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> + {% endif %} + {% if prev %} + <a href="{{ prev.link|e }}" class="btn btn-neutral float-left" title="{{ prev.title|striptags|e }}" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> {{ _('Previous') }}</a> + {% endif %} + </div> + {% endif %} + + <hr/> + + <div role="contentinfo"> + <p> + {%- if show_copyright %} + {%- if hasdoc('copyright') %} + {% trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }} <a href="https://shivesh.org">https://shivesh.org</a>{% endtrans %} + {%- else %} + {% trans copyright=copyright|e %}© Copyright {{ copyright }} <a href="https://shivesh.org">https://shivesh.org</a>{% 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> |
