16 lines
No EOL
647 B
Text
16 lines
No EOL
647 B
Text
<footer{% unless updated %} style="margin-top:var(--spacing-3xl)"{% endunless %}>
|
|
{%- if updated -%}
|
|
<p class="updated"><em>This page was last updated on {{ updated | strip }}.</em></p>
|
|
{%- endif -%}
|
|
<nav aria-label="Social icons" class="social">
|
|
{%- for link in nav.footer_icons -%}
|
|
{% render "nav/link.liquid", page:page, link:link %}
|
|
{%- endfor -%}
|
|
</nav>
|
|
<nav aria-label="Secondary site navigation" class="sub-pages">
|
|
{%- for link in nav.footer_text -%}
|
|
{% render "nav/link.liquid", page:page, link:link %}
|
|
{% unless forloop.last %}<span>/</span>{% endunless %}
|
|
{%- endfor -%}
|
|
</nav>
|
|
</footer> |