gallery.html 548 B

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