{# 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 #}
{{ item.content|default('') }}
{% if url %}{% endif %}{{ item.content|default('') }}