1
0
Fork 0
yinghong-massage.de/templates/partials/footer.tera.html
2022-10-25 01:11:48 +02:00

17 lines
508 B
HTML

<div class="container-xxl">
<br />
<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;">
<span class="underline-on-hover" style="color: {{ config.extra.secondary_color}};">
{{ footer_item.name }}
</span>
</a>
</div>
{% endfor %}
</div>
<br />
</div>