chore: remove utility classes + cleanup

This commit is contained in:
Cory Dransfeldt 2024-09-15 12:49:33 -07:00
parent 4302f61f8c
commit 8a8de24caa
No known key found for this signature in database
30 changed files with 247 additions and 214 deletions

View file

@ -1,13 +1,13 @@
<footer{% unless updated %} style="margin-top:var(--spacing-3xl)"{% endunless %}>
{%- if updated -%}
<p class="text-centered"><em>This page was last updated on {{ updated | strip }}.</em></p>
<p class="updated"><em>This page was last updated on {{ updated | strip }}.</em></p>
{%- endif -%}
<nav aria-label="Social icons" class="social flex-centered justify-centered text-centered">
<nav aria-label="Social icons" class="social">
{%- for link in nav.footer_icons -%}
{% render "partials/nav/linked-icon.liquid", title:link.title, url:link.permalink, icon:link.icon %}
{% render "partials/nav/link.liquid", page:page, title:link.title, url:link.permalink, icon:link.icon %}
{%- endfor -%}
</nav>
<nav aria-label="Secondary site navigation" class="sub-pages flex-centered justify-centered text-centered">
<nav aria-label="Secondary site navigation" class="sub-pages">
{%- for link in nav.footer_text -%}
{% render "partials/nav/link.liquid", page:page, title:link.title, url:link.permalink, icon:link.icon %}
{% if not forloop.last %}<span>/</span>{% endif %}