- ---
- layout: main_layout.njk
- data: collections.miniImages
- permalink: "/galleryB/index.html"
- ---
- <h2>Index</h2>
- <ul>
- {% for name, photoList in collections.miniImages %}
- <li>
- <a href="/gallery/{{ name | slugify }}/">
- {{ name | capitalize }} ({{ photoList.length }} photos)
- </a>
- </li>
- {% endfor %}
- </ul>
|