You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{% if menu %}
|
|
<ul>
|
|
{% for item in items %}
|
|
<li class="{{ item.classes|join(' ') }}">
|
|
<a target="{{ item.target }}" href="{{ item.link }}">{{ item.title }}</a>
|
|
{% include 'partials/menu.twig' with {
|
|
items: item.children
|
|
} %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|