{{ page.title }}
{% if page.text.isNotEmpty %}
{{ page.text.kirbytext|raw }}
{% endif %}
{% if page.files.template("artwork").isNotEmpty %}
{% set artworks = page.files.template("artwork").sortBy('sort') %}
{% for artwork in artworks %}
{% if artwork.type == 'video' %}
{% endif %}
{% if artwork.type == 'image' %}
{% endif %}
{% if artwork.caption %}
{{ artwork.caption }}
{% endif %}
{% endfor %}
{% endif %}