karton/templates/footer.html

17 lines
420 B
HTML
Raw Permalink 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() %}
MicroBin by Dániel Szabó. Fork me on <a href="https://github.com/szabodanika/microbin">GitHub</a>!
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>
</html>