templates/layouts/layouts_front/temp.html.twig line 1

Open in your IDE?
  1. {# Pages du premier niveau #}
  2. <div class="d-flex flex-middle flex-column flex-wrap blocnavLi">
  3.     {% for page in pages %}
  4.         {# Si il n'y a pas de page parent, menu de premier niveau #}
  5.         {% if page.pparent == 0 and page.pcacher_menu != 1 %}
  6.             {% set hasChild = 0 %}
  7.             {# Vérification si sous menu #}
  8.             {% for pageSub in pages %}
  9.                 {% if pageSub.pparent == page.page_id and pageSub.pcacher_menu != 1 %}
  10.                     {% set hasChild = 1 %}
  11.                 {% endif %}
  12.             {% endfor %}
  13.             {% if hasChild %}
  14.                 <li data-id="{{ page.page_id }}"
  15.                     class="nav-item itemSousMenu dropdown m-0 p-0 col" style="">
  16.                     {% set menu = page %}
  17.                     {% embed 'layouts/layouts_front/nav/nav_page_menu.html.twig' with {'level': 1} %}{% endembed %}
  18.                     {# Si il y a des sous menu niveau 1, on les affiche #}
  19.                     {% if hasChild == 1 %}
  20.                         <div class="dropdown-menu {% if logoInMenu == 'top_center' %}dropdown-menu-logo-top{% endif %}"
  21.                              aria-labelledby="dropdown-undefined">
  22.                             <div class="dropdown">
  23.                                 {# Pages du sous menu niveau 1 #}
  24.                                 {% for pageSub in pages %}
  25.                                     {# Si la page parent correspond #}
  26.                                     {% if pageSub.pparent == page.page_id and pageSub.pcacher_menu != 1 %}
  27.                                         {% set hasChild = 0 %}
  28.                                         {% for pageSubSub in pages %}
  29.                                             {% if pageSubSub.pparent == pageSub.page_id and pageSubSub.pcacher_menu != 1 %}
  30.                                                 {% set hasChild = 1 %}
  31.                                             {% endif %}
  32.                                         {% endfor %}
  33.                                         {% set menu = pageSub %}
  34.                                         {% embed 'layouts/layouts_front/nav/nav_page_menu.html.twig' with {'level': 2} %}{% endembed %}
  35.                                         {# Si il y a des sous menu niveau 2, on les affiche #}
  36.                                         {#                                    {% if hasChild == 1 %} #}
  37.                                         {#                                        <div class="dropdown-menu dropdown-submenu dropdown-submenu-level-3 {% if logoInMenu == 'top_center' %}dropdown-submenu-logo-top{% endif %}" #}
  38.                                         {#                                             aria-labelledby="dropdown-undefined"> #}
  39.                                         {#                                            #}{# Pages du sous menu niveau 2 #}
  40.                                         {#                                            {% for pageSubSub in pages %} #}
  41.                                         {#                                                #}{# Si la page parent correspond #}
  42.                                         {#                                                {% if pageSubSub.pparent == pageSub.page_id and pageSubSub.pcacher_menu != 1 %} #}
  43.                                         {#                                                    {% set menu = pageSubSub %} #}
  44.                                         {#                                                    {% set hasChild = 0 %} #}
  45.                                         {#                                                    {% embed 'layouts/layouts_front/nav/nav_page_menu.html.twig' with {'level': 3} %}{% endembed %} #}
  46.                                         {#                                                {% endif %} #}
  47.                                         {#                                            {% endfor %} #}
  48.                                         {#                                        </div> #}
  49.                                         {#                                    {% endif %} #}
  50.                                     {% endif %}
  51.                                 {% endfor %}
  52.                             </div>
  53.                         </div>
  54.                     {% endif %}
  55.                 </li>
  56.             {% endif %}
  57.         {% endif %}
  58.     {% endfor %}
  59. </div>