{% if post.postLinks|length >= 1 %}
{% for link in post.postLinks %}
{% if link.isTextLink == true %}
{{link.caption}}
{% endif %}
{% endfor %}
{% endif %}
{% if post.postImages|length >= 1 %}
{% for image in post.postImages %}
{% endfor %}
{% else %}
Aucune image associée à cet article...
{% endif %}
{% if post.postLinks|length > 0 %}
{% for link in post.postLinks %}
{{link.caption}}
{% endfor %}
{% else %}
Aucun lien associé à cet article
{% endif %}
{% if post.postFiles|length > 0 %}
{% for file in post.postFiles %}
{{file.caption}}
{% endfor %}
{% else %}
Aucun document associé à cet article
{% endif %}