{% if brand %} {% if brand_icon %} {% endif %}{{ brand }} {% endif %}
    {% for item in links %} {% if item.items is defined %} {# Dropdown item #}
  • {% if item.icon %} {% endif %}{{ item.label }}
      {% for subitem in item.items %}
    • {% if subitem.icon %} {% endif %}{{ subitem.label }}
    • {% endfor %}
  • {% else %} {# Regular link #}
  • {% if item.icon %} {% endif %}{{ item.label }}
  • {% endif %} {% endfor %}