menu.twig 323 B

123456789101112
  1. {% if menu %}
  2. <ul>
  3. {% for item in items %}
  4. <li class="{{ item.classes | join(' ') }}">
  5. <a target="{{ item.target }}" href="{{ item.link }}">{{ item.title }}</a>
  6. {% if item.children|length >= 1 %}
  7. {% include "menu.twig" with {'items': item.children} %}
  8. {% endif %}
  9. </li>
  10. {% endfor %}
  11. </ul>
  12. {% endif %}