1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-27 05:24:38 +04:00
Files
tabler/src/pages/gallery.html
T
2020-11-02 00:43:03 +01:00

24 lines
543 B
HTML

---
title: Gallery
page-header: Gallery
page-header-description: 1-12 of 241 photos
page-header-actions: photos
menu: extra.gallery
---
{% assign horizontal = 0 %}
<div class="row">
{% assign photos = site.data.photos | where: "horizontal", true %}
{% for photo in photos limit: 12 %}
{% assign person = site.data.people[forloop.index0] %}
<div class="col-sm-6 col-lg-4">
{% include cards/gallery-photo.html person=person %}
</div>
{% endfor %}
</div>
<div class="d-flex">
{% include ui/pagination.html class="ml-auto" %}
</div>