1
0
Fork 0
yinghong-massage.de/templates/partials/footer.html

17 lines
488 B
HTML
Raw Normal View History

2022-10-24 14:35:18 +00:00
<div class="container-xxl">
2022-10-24 23:11:48 +00:00
<br />
2022-10-24 14:35:18 +00:00
2022-10-24 23:11:48 +00:00
<div class="row">
{% for footer_item in config.extra.footer_items %}
<div class="col-sm p-1">
<a href="{{ footer_item.url }}" style="text-decoration: none;">
2022-11-06 19:54:49 +00:00
<span class="underline-on-hover"
style="color: {{ config.extra.secondary_color }}">{{ footer_item.name }}</span>
2022-10-24 23:11:48 +00:00
</a>
</div>
{% endfor %}
2022-10-24 14:35:18 +00:00
</div>
2022-10-24 23:11:48 +00:00
<br />
2022-10-24 14:35:18 +00:00
</div>