{% extends 'base.html.twig' %} {% block title %}Accueil - Derniers articles{% endblock %} {% block body %}

📰 Derniers articles

{# First row: one big post left, two stacked posts right #}
{% if posts[0] is defined %}
{% if posts[0].image %} {{ posts[0].title|default('Article image') }} {% endif %}

{{ posts[0].title }}

{{ posts[0].subtitle }}

{% endif %}
{% for i in 1..2 %} {% if posts[i] is defined %}
{% if posts[i].image %} {{ posts[i].title|default('Article image') }} {% endif %}

{{ posts[i].title|slice(0,40) ~ '...' }}

{{ posts[i].subtitle|slice(0,80) ~ '...' }}

{% endif %} {% endfor %}
{# Second row: two small posts left, one big post right #}
{% for i in 3..4 %} {% if posts[i] is defined %}
{% if posts[i].image %} {{ posts[i].title|default('Article image') }} {% endif %}

{{ posts[i].title }}

{{ posts[i].subtitle|slice(0,80) ~ '...' }}

{% endif %} {% endfor %}
{% if posts[5] is defined %}
{% if posts[5].image %} {{ posts[5].title|default('Article image') }} {% endif %}

{{ posts[5].title }}

{{ posts[5].subtitle }}

{% endif %}
{% endblock %}