{% for pub in p.publication_platforms %}
{% if pub.url %}
{{ pub.label }}
{% else %}
{{ pub.label }}
{% endif %}
{% endfor %}
{% endif %}
{% if p.media_items %}
{% set photo_urls = [] %}
{% for m in p.media_items %}
{% if m.type == 'photo' and m.url %}
{% set _ = photo_urls.append(m.url) %}
{% endif %}
{% endfor %}