2198cbdff9
- improved support for serving static resources from the binary, now supporting images - added new logo - changed save button - fixed footer attribution text, it is not true anymore that MicroBin is made by myself - replaced footer GitHub link with microbin.eu link
17 lines
No EOL
392 B
HTML
17 lines
No EOL
392 B
HTML
{% if !args.hide_footer %}
|
|
|
|
<hr>
|
|
<p style="font-size: smaller">
|
|
{% if args.footer_text.as_ref().is_none() %}
|
|
<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 %}
|
|
</p>
|
|
|
|
{%- endif %}
|
|
|
|
</body>
|
|
|
|
</html> |