gallery.html 576 B

123456789101112131415161718192021222324
  1. ---
  2. title: Gallery
  3. page-header: Gallery
  4. page-header-description: 1-15 of 241 photos
  5. page-header-actions: photos
  6. page-menu: extra.gallery
  7. layout: default
  8. permalink: gallery.html
  9. ---
  10. {% assign filtered-photos = photos | where: "horizontal", true %}
  11. <div class="row row-cards">
  12. {% for photo in filtered-photos limit: 15 %}
  13. {% assign person = people[forloop.index0] %}
  14. <div class="col-sm-6 col-lg-4">
  15. {% include "cards/gallery-photo.html" person=person %}
  16. </div>
  17. {% endfor %}
  18. </div>
  19. <div class="d-flex mt-5">
  20. {% include "ui/pagination.html" class="ms-auto" %}
  21. </div>