---
layout: main_layout.njk
pagination:
data: collections.miniImages
size: 1
alias: albumName
reverse: true
permalink: "/gallery/{{ albumName | slugify }}/index.html"
---
{# 2. List Images #}
{% for photo in currentData.images | sort(attribute='date') | reverse %}
{{ photo.date | date('YYYY-MM-DD') }}
{% else %}
No photos found in this album.
{% endfor %}