templates/clientWeb/listProfessionnal/prestatairesRegion.html.twig line 1

Open in your IDE?
  1. {% block prestatairesRegion %}
  2. <aside class="container mt-5 mb-5" id="prestatairesRegion">
  3.     {# <div class="d-flex justify-content-center align-items-center">
  4.         <img class="logo-title pr-3" src="../img/faviconBookpresta.png"
  5.             alt="logo">
  6.         <h2 class="title">Prestataires par rĂ©gions</h2>
  7.     </div>#}
  8.     <div class="justify-content-center align-items-center mx-0 px-0 my-0 py-0 title-section">
  9.         <h2 class="title text-right mr-2 py-lg-2 py-0 my-lg-2 my-0">Prestataires par rĂ©gions</h2>
  10.     </div>
  11.     <div class="row text-center mt-5">
  12.         {% for key, value in arrayByDistrict %}
  13.         <div class="col-xl-3 col-lg-3 col-md-4 col-sm-4 col-12 d-flex justify-content-between mb-1">
  14.             <p>{{ key }}</p>
  15.             <p>{{ value }}</p>
  16.         </div>
  17.         {% endfor %}
  18.     </div>
  19. </aside>
  20. {% endblock %}