{# Pages du premier niveau #}
{% for page in pages %}
{# Si il n'y a pas de page parent, menu de premier niveau #}
{% if page.pparent == 0 and page.pcacher_menu != 1 %}
{% set hasChild = 0 %}
{# Vérification si sous menu #}
{% for pageSub in pages %}
{% if pageSub.pparent == page.page_id and pageSub.pcacher_menu != 1 %}
{% set hasChild = 1 %}
{% endif %}
{% endfor %}
<li data-id="{{ page.page_id }}"
class="nav-item dropdown m-0 p-0 col navMere {% if hasChild == 0 %}dontHaveChilds {% endif %}{% if page.penavant_menu == 1 %}fondVioletNav{% endif %}"{% if page.page_id == 13 %}
onclick="openProductMenu();"
{% endif %}style="">
{% set menu = page %}
{% embed 'layouts/layouts_front/nav/nav_top_menu.html.twig' with {'level': 1} %}{% endembed %}
{# Si il y a des sous menu niveau 1, on les affiche #}
{% if hasChild == 1 %}
<div class="dropdown-menu mobileNav{% if logoInMenu == 'top_center' %}dropdown-menu-logo-top{% endif %}"
data-parentId="{{ page.page_id }}" aria-labelledby="dropdown-undefined">
<div class="dropdown checkNav" id="checkNav">
{# Pages du sous menu niveau 1 #}
{% for pageSub in pages %}
{# Si la page parent correspond #}
{% if pageSub.pparent == page.page_id and pageSub.pcacher_menu != 1 %}
{% set hasChild = 0 %}
{% for pageSubSub in pages %}
{% if pageSubSub.pparent == pageSub.page_id and pageSubSub.pcacher_menu != 1 %}
{% set hasChild = 1 %}
{% endif %}
{% endfor %}
{% set menu = pageSub %}
{% embed 'layouts/layouts_front/nav/nav_top_menu.html.twig' with {'level': 2} %}{% endembed %}
{% endif %}
{% endfor %}
</div>
</div>
{% endif %}
</li>
{% endif %}
{% endfor %}
{% if isEcommerce == 1 %}
{% include 'layouts/layouts_front/nav/ecommerce.html.twig' %}
{% endif %}
{#
<div class="lesIcoNav">
<span class="nav-item dropdown m-0 ms-2 me-2 p-0 col iconNav" style="">
<img alt="panier" id="panier" src="{{ websiteroot }}{{ asset('/medias_front/common/picto_panier.svg') }}">
</span>
<span class="nav-item dropdown m-0 ms-2 me-2 p-0 col iconNav">
<img alt="mon compte" id="compte"
src="{{ websiteroot }}{{ asset('/medias_front/common/picto_compte.svg') }}">
</span>
</div>
#}