diff --git a/source/_patterns/04-components/menu/menu.twig b/source/_patterns/04-components/menu/menu.twig index 4dc2cb9f8a46670121dc609c303a001c05cffa3e..9fec32e6c30dd19366ebf2fd869db2e2f9df4f5d 100644 --- a/source/_patterns/04-components/menu/menu.twig +++ b/source/_patterns/04-components/menu/menu.twig @@ -4,6 +4,7 @@ {% macro menu_links(items, attributes, menu_level, menu_name, menu_class, item_class, link_class, parent) %} {% import _self as menus %} + {% if items %} {% if menu_level == 0 %} @@ -89,7 +90,7 @@ - {% if menu_level == 1 and parent and not menu_parent_hide %} + {% if menu_level == 1 and parent %} <li {{ add_attributes(additional_item_attributes) }}> @@ -103,18 +104,22 @@ </span> </a> </li> - {% endif %} - - <li {{ add_attributes(additional_item_attributes) }}> + {% endif %} + <li {{ add_attributes(additional_item_attributes) }}> <a - {% if item.submenu %} + {% if item.submenu and menu_level == 0 %} + tabindex="0" + aria-haspopup="true" + role="button" + {% elseif item.submenu %} tabindex="0" aria-haspopup="true" role="button" + href="{{ item.url }}" {% else %} - href="{{ item.url }}" + href="{{ item.url }}" {% endif %} {{ add_attributes(link_attributes) }} >