{% set title = cat ? cat.name : 'Actualités' %}
{% set subtitle = cat ? "Publications" %}
{% set menu = 'articles' %}
{% import "Default/macros.html.twig" as macros %}
{% extends 'Default/base.html.twig' %}
{% block content %}
<div class='gpadding {{desktop("vt-20-in")}} {{mobile("vt-30-in")}} '>
<div class='articles {{desktop("flex row space wrap")}} {{mobile("")}}'>
{% for o in articles %}
{{macros.article(o)}}
{% endfor %}
{% if isDesktop() and (articles|length % 3) %}
{% for o in 1..(3 - articles|length % 3) %}
<i class="third-20"></i>
{% endfor %}
{% endif %}
</div>
<div class='{{desktop("")}}'>
{% include ("Default/counter.html.twig") with {expanded:true} %}
</div>
</div>
{% endblock %}