<nav aria-label="Secondaria">
    <ul class="n7-secondary-navigation flex max-lg:flex-col max-lg:gap-6">

        <li class="">
            <a href="page" class="n7-link max-lg:block py-2 lg:p-2 text-sm n7-content-01">
                Voce 1

            </a>
        </li>

        <li class="">
            <a href="page" class="n7-link max-lg:block py-2 lg:p-2 text-sm n7-content-01">
                Voce 2

            </a>
        </li>

    </ul>
</nav>
{% if label %}<nav aria-label="{{ label }}">{% endif %}
    <ul class="n7-secondary-navigation flex max-lg:flex-col max-lg:gap-6">
    {% for item in items %}
        <li class="{% if item.classes %} {{ item.classes }}{% endif %}{% if separator %} border-r n7-border-gray-01 last:border-r-0 px-4{% endif %}">
            {% render '@link',{ label:item.label, href:'page', classes:'max-lg:block py-2 lg:p-2 text-sm n7-content-01' }, true %}
        </li>
    {% endfor %}
    </ul>
{% if label %}</nav>{% endif %}
{
  "label": "Secondaria",
  "items": [
    {
      "label": "Voce 1"
    },
    {
      "label": "Voce 2"
    }
  ]
}
  • Handle: @secondary-navigation
  • Preview:
  • Filesystem Path: components/03-molecules/secondary-navigation/secondary-navigation.njk
  • References (1): @link
  • Referenced by (1): @top-bar

No notes defined.