custom/plugins/LdsMegaMenu/src/Resources/views/storefront/layout/navigation/megamenu.html.twig line 1

Open in your IDE?
  1. {% set navigationMaxDepth = 2 %}
  2. {% if not level %}
  3.     {% set level = 0 %}
  4. {% endif %}
  5. <div class="megamenu_fylout ">
  6.     <div class="row m-0">
  7.         {% for i in 0..navigationMaxDepth %}
  8.             <div class="megamenu_level megamenu_level{{i}} {% if loop.last %}col-6{% else %}col-3{% endif %}" data-menu-level="{{i}}">
  9.                 {% sw_include '@Storefront/storefront/layout/navigation/megamenu_level.html.twig' with {
  10.                     navigationTree: navigationTree,
  11.                     navigationMedia: category.media,
  12.                     page: page,
  13.                     level: i
  14.                 } only %}
  15.             </div>
  16.         {% endfor %}
  17.     </div>
  18. </div>