{# /** * @file * Default theme implementation to each level of menu. */ #} {% import _self as menu %} {{ menu.menu_links(items, attributes, 0) }} {% macro menu_links(items, attributes, menu_level) %} {% for key, item in items %} {% if key|first != '#' %} {% set menu_item_classes = [ 'menu-item', item.is_expanded ? 'menu-item--expanded', item.is_collapsed ? 'menu-item--collapsed', item.in_active_trail ? 'menu-item--active-trail', ] %} {% set rendered_content = item.content|without('')|render %} {% if rendered_content %} {{ rendered_content }} {% endif %} {% endif %} {% endfor %} {% endmacro %}