karton/templates/footer.html

19 lines
447 B
HTML
Raw Normal View History

{% if !args.hide_footer %}
2022-04-10 22:21:45 +00:00
<hr>
<p style="font-size: smaller">
{% if args.footer_text.as_ref().is_none() %}
2023-03-05 14:21:12 +00:00
<b>Karton</b> by Schrottkatze, based on <a href="https://microbin.eu">MicroBin</a> by Dániel Szabó and the FOSS Community.
Let's keep the Web <b>compact</b>, <b>accessible</b> and <b>humane</b>!
{%- else %}
{{ args.footer_text.as_ref().unwrap() }}
{%- endif %}
2022-04-10 22:21:45 +00:00
</p>
{%- endif %}
2022-04-10 22:21:45 +00:00
</body>
2023-03-03 22:52:16 +00:00
</html>