{% if groupe|length>0 %} {% if hotels|length>0 %} <section id="hotels" class="bg-gray"> <div class="container"> <div class="title-section text-center"> <div class="title text-center">{{ groupe.titreBloc|raw }}</div> <p class="text-center font-20">{{ groupe.description|raw }}</p> </div> <div class="row"> <div class="col-sm-12"> <div id="properties-carousel-3" class="carousel slide-animated"> {% for hotel in hotels %} <a class="item item-hotel" href="{{ path('details_hotel',{id:hotel.hotel.id,slug:hotel.hotel.slug}) }}"> <div class="card"> <div class="img-hotel"> <div class="overlay-hotel"> <div class="prix"> <p class="price-start">à partir de</p> <h2 class="price"> {{ hotel.prix }} <sup>{{ app.session.get('devise',{'symbole':'DT'})['symbole'] }}</sup> </h2> <p class="price-composition"> {{ hotel.code_arrg }} </p> </div> </div> <img src="{{ hotel.image }}" class="img-responsive image" alt="{{ hotel.hotel.libelle }}"> </div> </div> <div class="card-body"> <p class="card-text"> {{ hotel.hotel.libelle }}</p> <div class="card-title"> {{ hotel.hotel.ville.libelle }} {% for star in 1..hotel.hotel.categorie.nombre_etoiles %} <i class="fa fa-star star-rating"></i> {% endfor %} </div> </div> </a> {% endfor %} </div> </div> </div> <div class="row text-center"> <a href="{{ path('sejour_hotel_availability') }}" class="btn btn-list">Voir liste</a> </div> </div> </section>{% endif %}{% endif %}