6 lines
294 B
HTML
6 lines
294 B
HTML
<!-- templates/footer.html -->
|
|
{% if settings and settings.footer_html %}
|
|
{{ settings.footer_html|safe }}
|
|
{% else %}
|
|
<div class="flex justify-center text-slate-300" style="margin-top:100px">Powered By <a href="https://github.com" target="_blank" class="ml-[5px]">AIDaohang</a></div>
|
|
{% endif %} |