mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-12 17:45:49 +00:00
38 lines
1.4 KiB
HTML
38 lines
1.4 KiB
HTML
{% extends "!layout.html" %}
|
|
|
|
{%- block footer %}
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<p class="pull-right">
|
|
<a href="#">Back to top</a>
|
|
{% if theme_source_link_position == "footer" %}
|
|
<br/>
|
|
{% include "sourcelink.html" %}
|
|
{% endif %}
|
|
</p>
|
|
<p>
|
|
Support us by using one of these alternatives:
|
|
<a class="reference external" href="https://www.patreon.com/GrovkillenTDer">Patreon</a>
|
|
<a class="reference external" href="https://ko-fi.com/grovkillentder">Ko-Fi</a>
|
|
<a class="reference external" href="https://www.paypal.me/espeasy">PayPal</a>
|
|
<br>
|
|
</p>
|
|
<p>
|
|
{%- if show_copyright %}
|
|
{%- if hasdoc('copyright') %}
|
|
{% trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}<br/>
|
|
{%- else %}
|
|
{% trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %}<br/>
|
|
{%- endif %}
|
|
{%- endif %}
|
|
{%- if last_updated %}
|
|
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}<br/>
|
|
{%- endif %}
|
|
{%- if show_sphinx %}
|
|
{% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx-doc.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}<br/>
|
|
{%- endif %}
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
{%- endblock %}
|