<section class="pt-4 pb-4">
<div class="container" data-animate="fadeInUp">
<div class="col-lg-12">
<div class="heading-text heading-section ">
<h2><span>{{ 'components.realisation.title' | admintrans | raw }}</span></h2>
</div>
</div>
<div class="row" data-animate="fadeInUp">
{% for realisation in realisations|slice(0,3) %}
<div class="grid-item col-lg-4 {{ realisation.type }}">
<div class="grid-item-wrap m-4" style="height: 200px;">
<a href="{{ path('realisationAjax',{'realisation' : realisation.id}) }}" data-lightbox="ajax" style="height: 200px;">
<div class="grid-image background-image rounded" {{ responsive_background( asset('images/upload/' ~ realisation.image) , 'height: 200px;') | raw }}></div>
</a>
</div>
<div class="text-center">
<h4>{{ realisation.titre }}</h4>
<p>{{ realisation.adresse }}</p>
</div>
</div>
{% endfor %}
</div>
<div class="text-center">
<a class="btn btn-light text-center" href="{{ path('realisations') }}">{{ 'components.realisation.bouton_tous' | admintrans | raw }}</a>
</div>
</div>
</section>