templates/front/menu.html.twig line 1

Open in your IDE?
  1. {% import "commons/components.html.twig" as comp %}
  2. <div class="d-flex cg-5 flex-wrap may-15">
  3.     {{ comp.menu_child("", path('front_landing'), true) }}
  4.     {% for key, child in menu %}
  5.         {{ comp.menu_child(key, child, false, loop) }}
  6.     {% endfor %}
  7. </div>