{% set articlesListing = getArticlesListing(app.request.locale,9) %}{% if articlesListing is not empty %}<section id="blog-1" class="pb-100 blog-section division" style="margin-top:150px;"><div class="container"><div class="section-title text-center mb-60"><h2 class="h2-xl">{% if app.request.locale == "en" %}Travel diaries{% else %}Carnets de voyage{% endif %}</h2></div><div class="row">{% for article in articlesListing %}{% if app.request.locale == "en" %}{% set urlArticle = path('blog_article',{'slug': article.slug}) %}{% if article.pageslug3 is not empty %}{% set urlArticle = '/' ~ article.pageslug ~ '/' ~ article.pageslug2 ~ '/' ~ article.pageslug3 %}{% elseif article.pageslug2 is not empty %}{% set urlArticle = '/' ~ article.pageslug ~ '/' ~ article.pageslug2 %}{% elseif article.pageslug is not empty %}{% set urlArticle = '/' ~ article.pageslug %}{% endif %}{% else %}{% set urlArticle = path('locale_blog_article',{'_locale':app.request.locale,'slug': article.slug}) %}{% if article.pageslug3 is not empty %}{% set urlArticle = '/' ~ app.request.locale ~ '/' ~ article.pageslug ~ '/' ~ article.pageslug2 ~ '/' ~ article.pageslug3 %}{% elseif article.pageslug2 is not empty %}{% set urlArticle = '/' ~ app.request.locale ~ '/' ~ article.pageslug ~ '/' ~ article.pageslug2 %}{% elseif article.pageslug is not empty %}{% set urlArticle = '/' ~ app.request.locale ~ '/' ~ article.pageslug %}{% endif %}{% endif %}<div class="col-md-6 col-lg-4"><div id="bp-1-1" class="blog-post "><div class="blog-post-img mb-35"><a href="{{ urlArticle }}" aria-label="{{ article.title }}" title="{{ article.title }}">{% if article.image.name is not null %}<figure class="image"><picture><source srcset="{{ replaceInWebP2(vich_uploader_asset(article, 'imageFile')) }}" type="image/webp"><img class="img-fluid r-16" src="{{ replaceInWebP2(vich_uploader_asset(article, 'imageFile')) }}" width="396" height="396" alt="{{ article.imageAlt }}" title="{{ article.imageTitle }}" loading="lazy" /></picture></figure>{% else %}<figure class="image"><picture><source srcset="/uploads/default_article.webp" type="image/webp"><img class="img-fluid r-16" src="/uploads/default_article.webp" width="396" height="396" alt="{{ article.imageAlt }}" title="{{ article.imageTitle }}" loading="lazy" /></picture></figure>{% endif %}</a></div><div class="blog-post-txt"><h3 class="s-20 w-700" style="margin-bottom:10px;"><a href="{{ urlArticle }}" aria-label="{{ article.title }}" title="{{ article.title }}">{{ article.title }}</a></h3>{% if article.subtitle is not empty %}<div style="margin-bottom:10px;">{{ articleResumeChain(article.subtitle,100) }}</div>{% endif %}{#<div class="blog-post-meta mt-20" style="margin-bottom:15px;"><ul class="post-meta-list ico-10"><li><p class="p-sm">{{ article.updatedAt|format_date(pattern='dd MMMM yyyy',locale=app.request.locale) }}</p></li></ul></div>#}</div></div></div>{% endfor %}</div></div></section>{% endif %}