templates/front/menu.html.twig line 1

Open in your IDE?
  1. {% set whiteMenu = whiteMenu|default(false) %}
  2. {% import "commons/components.html.twig" as comp %}
  3. <div class="d-flex cg-5 flex-wrap may-15 {{ not whiteMenu ? "justify-content-center" }} menu">
  4.     {{ comp.menu_child("", path('front_landing'), true, whiteMenu) }}
  5.     {% for key, child in menu %}
  6.         {{ comp.menu_child(key, child, false, whiteMenu, (isBold is defined and isBold ? (not loop.last) : false), loop.last) }}
  7.     {% endfor %}
  8. </div>