{# Requires the variable `menu` #} {% macro addMenuItem(item) %} {# Get the url of the menu item #} {% set url = null %} {% if item.route is defined %} {% set url = url(item.route, item.route_params|default([])) %} {% endif %} {% if item.href is defined %} {% set url = item.href %} {% endif %} {# Build the menu item #}
  • {% if url %} {% endif %} {% if item.icon_class is defined %} {% endif %}

    {{ item.content|default('') }}

    {% if url %}
    {% endif %}
  • {% endmacro %} {# Requires the variable `menu` #} {% macro addSubMenu(item) %} {% endmacro %} {% if menu %} {% endif %}