templates/front/index/indexPro.html.twig line 1

Open in your IDE?
  1. <div class="container justify-content-center">
  2.   <div class="bandeauTitreIndex">Espace Pro</div>
  3.   <a href="{{ path("paul_espacePro") }}">
  4.       <div class="row">
  5.         {% if accespacepros|length > 0 %}
  6.           {% if accespacepros[0].url is defined %}
  7.                     <div class="col-4">
  8.                         <img class="img-fluid" src="{{ pathLocal }}uploads/accespacepro/640/v_{{ accespacepros[0].url }}" alt="{{ accespacepros[0].alt }}" />
  9.                     </div>
  10.                   {% endif %}
  11.                   {% if accespacepros[1].url is defined %}
  12.                   <div class="col-4">
  13.                       <img class="img-fluid" src="{{ pathLocal }}uploads/accespacepro/640/v_{{ accespacepros[1].url }}" alt="{{ accespacepros[1].alt }}" />
  14.                   </div>
  15.                   {% endif %}
  16.                   {% if accespacepros[2].url is defined %}
  17.                   <div class="col-4">
  18.                       <img class="img-fluid" src="{{ pathLocal }}uploads/accespacepro/640/v_{{ accespacepros[2].url }}" alt="{{ accespacepros[2].alt }}" />
  19.                   </div>
  20.                   {% endif %}
  21.         {% else %}
  22.           <img class="img-fluid" src="{{ pathLocal }}imgs/index/pro.png" alt="UP-PARIS" />
  23.         {% endif %}
  24.       </div>
  25.   </a>
  26. </div>