Schema
Mocks
Template
{%- if items and items|length > 0 -%}
<nav class="FooterMenu-nav"{% if label %} aria-label="{{ label }}"{% endif %} itemscope itemtype="http://schema.org/SiteNavigationElement">
<ul class="FooterMenu-list">
{%- for item in items -%}
<li class="FooterMenu-item">
<a class="FooterMenu-link u-linkHover" href="{{ item.url }}" itemprop="url"{% if item.in_active_trail %} aria-current="page"{% endif %}>
<span itemprop="name">
{{ item.title }}
</span>
</a>
</li>
{%- endfor -%}
</ul>
</nav>
{%- endif -%}