{% if articles|length > 0 %}
{% for article in articles %}
{% if article.images|length > 0 %}
{{ article.images[0].path }}
{% endif %}
{{ article.title }}
{{ article.createdAt|date }}
{% endfor %}
{% endif %}