<header>
{{ include('front/inc/header_fixed.html.twig') }}
<div class="d-flex justify-content-center flex-column nav-container">
<div class="logo text-center">
<a href="{{ path('front_home') }}">
<img src="{{ asset('img/royal_hamilius_logo.png') }}" title="Royal Hamilius">
</a>
</div>
<div class="menu d-flex">
<nav class="d-flex justify-content-between align-items-center col-md-8 col-lg-5 col-xl-3 mt-4 no-responsive-mobile">
<a href="#" id="displayBoutiques">Boutiques</a>
<span>.</span>
<a href="{{ path('front_post_list') }}">Actualités</a>
<span>.</span>
<a href="{{ path('front_parking') }}">Parking</a>
<span>.</span>
<a href="{{ path('front_contact') }}">Contact</a>
</nav>
<div id="navMenuResponsive" class="nav-menu-responsive d-none position-fixed">
<i class="fa-solid fa-xmark fa-3x" id="crossRemoveNav"></i>
<nav class="nav-list-responsive col-md-8 col-lg-5 col-xl-3">
<a href="{{ path('front_post_list') }}"><h3>Actualités</h3></a>
<a href="{{ path('front_parking') }}"><h3>Parking</h3></a>
<a href="{{ path('front_contact') }}"><h3>Contact</h3></a>
</nav>
</div>
<div id="burgerMenu">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</div>
</div>
<div class="boutiques bg-black" id="boutiquesHeader">
<div class="text-center col-md-12 pt-5 title-boutiques">
<h2 class="red">Nos boutiques</h2>
</div>
{% set shopWithoutFilter = ["Hels1nk1", "Galeries Lafayette", "Lët's Refashion"] %}
<div class="d-flex justify-content-center align-items-center pt-4 pb-4 list-boutiques position-relative">
{% set shops = twig_service.getShops() %}
{% for shop in shops %}
<a href="{{ path('front_shop_single', {'slug': shop.slug}) }}" id="{{shop.slug}}" class=" {% if loop.index > 4 %}no-responsive{% elseif loop.index > 2 and loop.index <= 4 %}no-responsive-mobile{% endif %}" style="text-align:center;"><img src="{{ asset(constant('App\\Services\\UploadFileService::SHOP_IMAGE_DIR') ~ shop.logo) }}" style="max-height:50px;max-width:150px;"></a>
{% endfor %}
<a class="link-arrow green position-relative" href="#">
<img src="{{ asset('img/icons/arrow_right.svg') }}" class="position-absolute">
Voir tous
</a>
<a href="" id="crossCloseBoutiques" class="green">X</a>
</div>
</div>
</header>