13 lines
483 B
Text
13 lines
483 B
Text
<footer>
|
|
<nav class="social__main flex--centered">
|
|
{% for link in nav.social %}
|
|
{% render "partials/nav/linked-icon.liquid", name: link.name, link: link.url, icon: link.icon %}
|
|
{% endfor %}
|
|
</nav>
|
|
<nav class="links__secondary flex--centered">
|
|
{% for link in nav.footer %}
|
|
{% render "partials/nav/link.liquid", page: page, link: link.name, icon: link.icon %}
|
|
{% if not forloop.last %}<span>•</span>{% endif %}
|
|
{% endfor %}
|
|
</nav>
|
|
</footer>
|