{% extends "base.html" %} {% block title %}{{ page.title }} - {{ site_name() }}{% endblock %} {% block head %} {% endblock %} {% block content %}

{{ page.title }}

{% if page.published_at %} {% endif %}
{% if featured_image_url %}
{{ page.featured_asset.alt_text or page.title }}
{% 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 %} {% endif %} {% if files %} {% endif %} {% endif %} {% if not page.is_published %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}