{% spaceless %} {# Parameters: - "items" (array) (default: []) - "lang" (string) (default: '') - "label" (string) (default: '') - "path" (string) (default: '') - "active (boolean) (default: false) - "section" (string) (default: '') - "overlay" (boolean) (default: false): is the list an overlay? - "category" (string) (default: '') - "icon_path" (string) (default: ''): file containing the svg icons #} {# Internal properties #} {% set _items = items|default([]) %} {% set _overlay = overlay|default(false) %} {% set _icon_path = icon_path|default('') %} {% set _category = category|default('') %} {% set _section = section|default('') %} {# Internal logic - Process properties #} {% set _column1 = _items|slice(0, (items|length / 2)|round(0, 'ceil')) %} {% set _column2 = _items|slice((items|length / 2)|round(0, 'ceil'), items|length) %} {# Print the result #}