{% for item in items %}
<div class="articles__column">
<div class="item item--article">
{% if item.image %}
<div class="item__photo">
{{ include('application/partial/picture.html.twig', {image: item.image, width: 400, height: 540}) }}
</div>
{% endif %}
<div class="item__title">
<a href="{{ documentUrl(item) }}">
<span class="item__icon"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.146 3.133a.536.536 0 0 1 .708 0l5 4.546a.426.426 0 0 1 0 .642l-5 4.546a.536.536 0 0 1-.708 0 .426.426 0 0 1 0-.643L9.793 8 5.146 3.776a.426.426 0 0 1 0-.643z"></path></svg></span>
<span class="item__text">{{ item.name(app.request.locale) }}</span>
</a>
</div>
</div>
</div>
{% endfor %}