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