{% extends 'base_front.html.twig' %}
{% block body %}
<section id="newsList" class="bg-light-grey">
<div class="text-center col-md-12">
<h2 class="red">Nos actualités</h2>
</div>
<div class="list-news col-md-11 col-lg-8 col-xl-7 pt-5 m-auto row justify-content-between">
{% for post in posts %}
{% set randomClassLink = random(['bg-orange', 'bg-green', 'bg-red']) %}
<div class="col-md-4 col-lg-4 mt-5">
<div class="card">
<img class="card-img-top" src="{{ asset(constant('App\\Services\\UploadFileService::POST_IMAGE_DIR') ~ post.image) }}" alt="{{ post.title }}" style="height:180px;">
<div class="card-body">
<span class="date green">{{ post.createdAt|date('d.m.Y') }}</span>
<h5 class="card-title red mt-3">{{ post.title }}</h5>
<p class="card-text">{{ post.content|slice(0, 250)|striptags|replace({'é': 'é',' ': ' ', 'à': 'à', 'è': 'è', '’': '’', 'ê': 'ê', ' ?': ' ?'}) ~ '...' }}</p>
<a href="{{ path('front_post_single', {'slug': post.slug}) }}" class="btn-news {{ randomClassLink }}"><img src="{{ asset('img/icons/img-right-white.svg') }}"></a>
</div>
</div>
</div>
{% endfor %}
</div>
</section>
{% endblock %}