{% if menu %} <ul> {% for item in items %} <li> <a rel="noreferrer" href="{{ item.link }}">{{ item.title }}</a> {% if item.children|length >= 1 %} {% include "components/menu.twig" with {'items': item.children} %} {% endif %} </li> {% endfor %} </ul> {% endif %}