<div class="dflex fwwrap alaune-preview-container mt-40px mb-40px">
{% set request = get_articles_a_la_une(thematiques) %}
{% for i, hit in request %}
{% set type = hit.template %}
{% set url = sulu_content_path(hit.routePath) %}
{% set authored = hit.authored %}
{% if hit.excerptCategories is defined and hit.excerptCategories|length > 0 %}
{% set categories = hit.excerptCategories %}
{% endif %}
{% set title = hit.title %}
{% set hitChapo = hit.chapo %}
{% set hitAuthor = hit.author %}
{% set hitReadtime = hit.readtime %}
{% set author_name = hit.name %}
{% set author_lastname = hit.lastname %}
{% set visibleAnnuaire = hit.visibleAnnuaire %}
{% set header_img = hit.header_img %}
{% set hitContributors = hit.contributors %}
{% set hitDepartement = hit.departement %}
{% if header_img is defined and header_img is not empty %}
{% set img = sulu_resolve_media(header_img.id, 'fr') %}
{% endif %}
{% if hitContributors is defined and hitContributors|length > 0 %}
{% set contributors = hit.contributors %}
{% endif %}
{% if hitReadtime is defined and hitReadtime is not empty %}
{% set readtime = hitReadtime %}
{% endif %}
{% if hitChapo is defined and hitChapo is not empty %}
{% set chapo = hitChapo %}
{% endif %}
{% if hitDepartement is defined and hitDepartement is not empty %}
{% set departement = hitDepartement %}
{% endif %}
{% set title_lines = "" %}
{% if i > 0 %}
{% set title_lines = "fourlines" %}
{% endif %}
{% if type == "articles" or type == "analyses" or type == "guides_outils" %}
{% include "blocks/previews-from-controller/preview-article-logic.html.twig" %}
{% elseif type == "experiences" %}
{% include "blocks/previews-from-controller/preview-territoire-experience-logic.html.twig" %}
{% endif %}
{% endfor %}
</div>