{% extends 'front/layout/front.html.twig' %}
{% block pageContent %}
<!-- The 6 latest posts -->
<main class="my-5">
<div class="container">
<section class="text-center">
<h1 class="mb-3">
<strong>{{ page.title }}</strong>
</h1>
<h4 class="mb-3">
{{ page.subtitle }}
</h3>
</section>
<section>
{{ page.content|raw }}
</section>
<hr>
<section class="text-center">
<h2 class="mb-5">
<strong>Les dernières news</strong>
</h2>
<div class="row">
{% if latestPosts|length == 1 %}
{% set newsContainerClass = 'col-lg-12 col-md-12 mb-4' %}
{% elseif latestPosts|length == 2 %}
{% set newsContainerClass = 'col-lg-6 col-md-6 mb-4' %}
{% else %}
{% set newsContainerClass = 'col-lg-4 col-md-12 mb-4' %}
{% endif %}
{% for item in latestPosts %}
<div class={{newsContainerClass}}>
<div class="card">
<div class="bg-image hover-overlay ripple" data-mdb-ripple-color="light">
{# <img src="assets/img/posts/post.jpeg"
class="img-fluid"/> #}
<a href="#">
<div class="mask" style="background-color: rgba(251, 251, 251, 0.15);"></div>
</a>
</div>
<div class="card-body">
<h5 class="card-title">{{ item.title }}</h5>
<p class="card-text">
{{item.summary|raw}}
</p>
<a href="#" class="btn btn-primary">Read</a>
</div>
</div>
</div>
{% endfor %}
</div>
</section>
</div>
</main>
{% endblock %}