lightbox.html 534 B

1234567891011121314151617181920
  1. ---
  2. title: Lightbox
  3. page-header: Lightbox
  4. page-libs: [fslightbox]
  5. page-menu: base.lightbox
  6. layout: default
  7. permalink: lightbox.html
  8. ---
  9. {% assign filtered-photos = photos | where: "horizontal", true %}
  10. <div class="row row-cols-3 row-cols-md-4 row-cols-lg-6 g-3">
  11. {% for photo in filtered-photos %}
  12. <div class="col">
  13. <a data-fslightbox="gallery" href="{{ page | relative }}/static/photos/{{ photo.file }}">
  14. {% include "ui/photo.html" id=forloop.index0 class="rounded border" ratio="1x1" %}
  15. </a>
  16. </div>
  17. {% endfor %}
  18. </div>