--- title: Gallery page-title: Gallery done: true --- {% assign horizontal = 0 %}
{% for photo in site.data.photos %} {% if photo.horizontal %} {% assign person = site.data.people[forloop.index0] %}
{% include ui/avatar.html person=person class="mr-3" %}
{{ person.full_name }}
{{ forloop.index | random_date_ago: 10 | timeago }}
{% assign horizontal = horizontal | plus: 1 %} {% endif %} {% if horizontal == 12 %} {% break %} {% endif %} {% endfor %}