13 lines
323 B
Twig
13 lines
323 B
Twig
{% if menu %}
|
|
<ul>
|
|
{% for item in items %}
|
|
<li class="{{ item.classes | join(' ') }}">
|
|
<a target="{{ item.target }}" href="{{ item.link }}">{{ item.title }}</a>
|
|
{% if item.children|length >= 1 %}
|
|
{% include "menu.twig" with {'items': item.children} %}
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|