16 lines
488 B
HTML
16 lines
488 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>
|