simple-s3-gallery/templates/footer.html

24 lines
566 B
HTML
Raw Normal View History

2023-12-29 05:28:17 +00:00
<!--{#
2023-12-29 03:14:10 +00:00
#~ Var | Required | Default ~#
main_line | no | none
extra_lines (list)
- (text to print) | no | none
2023-12-29 05:28:17 +00:00
#}-->
2023-12-29 03:14:10 +00:00
<footer class="text-body-secondary py-5">
<div class="container">
<p class="float-end mb-1">
<a href="#">Back to top</a>
</p>
2023-12-29 04:08:20 +00:00
<p class="mb-1">{{ footer.main_line | default('') }}</p>
2023-12-29 03:14:10 +00:00
2023-12-29 04:08:20 +00:00
{% if footer.extra_lines %}
{% for line in footer.extra_lines %}
2023-12-29 03:14:10 +00:00
{% if line %}
<p class="mb-0">{{ line }}</p>
{% endif %}
{% endfor %}
{% endif %}
</div>
</footer>