{% block menu_recursif %} {% for item in menus %}
  • {{ item.title }} {% if item.children|length > 0 %} ▼ {% endif %} {% if item.children|length > 0 %}
      {# Appel récursif #} {% with {'menus': item.children} %} {{ block('menu_recursif') }} {% endwith %}
    {% endif %}
  • {% endfor %} {% endblock %}
{% include 'components/socials.html.twig' %}