duckquill/templates/includes/footer.html

22 lines
828 B
HTML
Raw Normal View History

2023-10-30 14:41:37 +00:00
<footer class="footer">
2023-10-13 00:55:20 +00:00
{% if config.extra.footer.show_copyright %}
2023-11-02 21:23:42 +00:00
<p title="Last built at {{ now() | date(format='%F %R %Z') }}">&copy; {{ config.title }}, 2023</p>
2023-10-13 00:55:20 +00:00
{% endif %}
{% if config.extra.footer.show_source %}
2023-11-02 21:23:42 +00:00
<p><a href="{{ config.extra.source_url }}">Website source</a></p>
2023-10-13 00:55:20 +00:00
{% endif %}
{% if config.extra.footer.show_powered_by %}
2023-11-02 21:23:42 +00:00
<p><small>Powered by <a href="https://www.getzola.org">Zola</a> and <a href="https://duckquill.exozy.me">Duckquill</a></small></p>
2023-10-13 00:55:20 +00:00
{% endif %}
{% if config.extra.footer.show_johnvert %}
2023-11-02 21:23:42 +00:00
<small>
<details><summary>Johnvertisement</summary>
<iframe class="johnvertisement" title="Johnvertisement" src="https://john.citrons.xyz/embed?ref={{ config.extra.footer.johnvert_ref }}"></iframe>
</details>
</small>
2023-10-13 00:55:20 +00:00
{% endif %}
</footer>