This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/_includes/partials/footer.liquid

13 lines
542 B
Text

<footer>
<nav aria-label="Social icons" class="flex--centered text-center">
{% for link in nav.social %}
{% render "partials/nav/linked-icon.liquid", name: link.name, link: link.url, icon: link.icon %}
{% endfor %}
</nav>
<nav aria-label="Secondary site navigation" class="flex--centered text-center">
{% 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>