123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {% set heading_id = attributes.id ~ '-menu'|clean_id %}
- <nav role="navigation" aria-labelledby="{{ heading_id }}"{{ attributes|without('role', 'aria-labelledby') }}>
-
- {% if not configuration.label_display %}
- {% set title_attributes = title_attributes.addClass('visually-hidden') %}
- {% endif %}
- {{ title_prefix }}
- <h2{{ title_attributes.setAttribute('id', heading_id) }}>{{ configuration.label }}</h2>
- {{ title_suffix }}
-
- {% block content %}
- {{ content }}
- {% endblock %}
- </nav>
|