<div class="container {{ bloc.act_bloc_margin_top }} {{ bloc.act_bloc_margin_bottom }}">
<div class="row justify-content-center">
<div class="col-md-12 col-lg-11">
{% if bloc.act_bloc_titre or bloc.act_bloc_sstitre %}
<div class="section-head">
{% if bloc.act_bloc_titre %}
<h3 class="mbr-section-title mbr-fonts-style display-2 text-center">
<strong>{{ bloc.act_bloc_titre }}</strong>
</h3>
{% endif %}
{% if bloc.act_bloc_sstitre %}
<h4 class="mbr-section-subtitle mbr-fonts-style display-5 text-center">
{{ bloc.act_bloc_sstitre }}
</h4>
{% endif %}
</div>
{% endif %}
<div class="d-flex justify-content-center">
{% for doc in medias %}
<a class="btn btn-primary" href="{{ asset('medias_front/actualite/'~doc.act_media_fichier) }}"
onclick="ga('send', 'event', 'Downloads', 'Pages', '{$doc.act_media_fichier}');" target="_blank"
rel="noreferrer">
<span>{{ doc.act_media_alt|default(doc.act_media_fichier) }}</span>
</a>
{% endfor %}
</div>
</div>
</div>
</div>