templates/front/front_news/bloc-document.html.twig line 1

Open in your IDE?
  1. <div class="container {{ bloc.act_bloc_margin_top }} {{ bloc.act_bloc_margin_bottom }}">
  2.     <div class="row justify-content-center">
  3.         <div class="col-md-12 col-lg-11">
  4.             {% if bloc.act_bloc_titre or bloc.act_bloc_sstitre %}
  5.                 <div class="section-head">
  6.                     {% if bloc.act_bloc_titre %}
  7.                         <h3 class="mbr-section-title mbr-fonts-style display-2 text-center">
  8.                             <strong>{{ bloc.act_bloc_titre }}</strong>
  9.                         </h3>
  10.                     {% endif %}
  11.                     {% if bloc.act_bloc_sstitre %}
  12.                         <h4 class="mbr-section-subtitle mbr-fonts-style display-5 text-center">
  13.                             {{ bloc.act_bloc_sstitre }}
  14.                         </h4>
  15.                     {% endif %}
  16.                 </div>
  17.             {% endif %}
  18.             <div class="d-flex justify-content-center">
  19.                 {% for doc in medias %}
  20.                     <a class="btn btn-primary" href="{{ asset('medias_front/actualite/'~doc.act_media_fichier) }}"
  21.                        onclick="ga('send', 'event', 'Downloads', 'Pages', '{$doc.act_media_fichier}');" target="_blank"
  22.                        rel="noreferrer">
  23.                         <span>{{ doc.act_media_alt|default(doc.act_media_fichier) }}</span>
  24.                     </a>
  25.                 {% endfor %}
  26.             </div>
  27.         </div>
  28.     </div>
  29. </div>