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

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