This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coryd.dev-eleventy/src/_includes/partials/footer.liquid
2023-08-14 09:50:29 -07:00

13 lines
571 B
Text

<footer>
<div class="mt-8 pt-8 pb-4 flex gap-2 md:gap-3 justify-center w-full">
{% for link in nav.social %}
{% render "partials/nav/linked-icon.liquid", name: link.name, link: link.url, icon: link.icon %}
{% endfor %}
</div>
<div class="flex justify-center text-sm text-gray-500 dark:text-gray-100 pb-8 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 class="mx-1">•</span>{% endif %}
{% endfor %}
</div>
</footer>