{% if post.description|length %}
{% set summary = post.description %}
{% else %}
{% set summary = post.text|truncate(255) %}
{% endif %}
{% if post['@type'] == 'Photograph' %}
{% if post.image|length %}
{% for image in post.image %}
{% if image.representativeOfPage %}
{{ image.text|relurl(baseurl) }}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}