templates/front/Home/mea.html.twig line 1

Open in your IDE?
  1. <div class="col-md-12 padding-off mea-index-margin">
  2.       <!-- Partie blog -->
  3.         <div class="col-md-6 col-sm-12 col-xs-12 mea-index">
  4.             {% if MiseEnAvantMajeur is not empty %}
  5.                 {% if MiseEnAvantMajeur.media.webPath is defined %}
  6.                     {% set imgpath = MiseEnAvantMajeur.media.webPath %}
  7.                     <div class="col-md-12 padding-off">
  8.                         <img src="{{ asset( imgpath) }}" class="img-responsive" loading="lazy" alt="{{ MiseEnAvantMajeur.titre }}"/>
  9.                     </div>
  10.                 {% endif %}
  11.                 <div class="block col-md-12 col-sm-12 col-xs-12{% if MiseEnAvantMajeur.colorFond is  null %} rose{% endif %}"{% if MiseEnAvantMajeur.colorFond is not null %} style="background-color: {{ MiseEnAvantMajeur.colorFond }}"{% endif %}>
  12.                     <a href="{{ MiseEnAvantMajeur.url }}">
  13.                         <h3{% if MiseEnAvantMajeur.colorTexte is not null %} style="color: {{ MiseEnAvantMajeur.colorTexte }}"{% endif %}>{{ MiseEnAvantMajeur.titre |raw }}</h3>
  14.                         <div{% if MiseEnAvantMajeur.colorTexte is not null %} style="color: {{ MiseEnAvantMajeur.colorTexte }}"{% endif %}>{{ MiseEnAvantMajeur.texte |raw }}</div>
  15.                     </a>
  16.                 </div>
  17.             {% endif %}
  18.       </div>
  19.       <div class="col-md-6 col-sm-12 col-xs-12 padding-off mea-index ">
  20.         {% for MiseEnAvantMineur in MisesEnAvantMineur %}
  21.             <div class="col-md-6 col-sm-6 margin-blog">
  22.                 {% if MiseEnAvantMineur.media.webPath is defined %}
  23.                     {% set imgpath = MiseEnAvantMineur.media.webPath %}
  24.                 {% endif %}
  25.                 <a href="{{ MiseEnAvantMineur.url }}"{% if MiseEnAvantMineur.target == 1%} target="_blank"{% endif %}><div class=" text-center mea-img"  title="{{ MiseEnAvantMineur.titre }}"><div class="mea">{% if imgpath  is defined %}<img class="img-responsive" loading="lazy" src="{{ asset(imgpath) }}" alt="" />  {% endif %}</div></div></a>
  26.             </div>
  27.         {% endfor %}
  28.       </div>
  29.   </div>