{% if page.published_at %}
{% endif %}
{% if featured_image_url %}
{% endif %}
{{ page.content | markdown | safe }}
{% if asset_urls %}
{% set media = [] %}
{% set files = [] %}
{% for asset in page.assets %}
{% if not page.featured_asset or asset.id != page.featured_asset.id %}
{% if asset.content_type.startswith("image/") or asset.content_type.startswith("video/") %}
{% if media.append(asset) %}{% endif %}
{% else %}
{% if files.append(asset) %}{% endif %}
{% endif %}
{% endif %}
{% endfor %}
{% if media %}