Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 645 Bytes

people.md

File metadata and controls

22 lines (21 loc) · 645 Bytes
layout title permalink
page
People
/people/

{% assign rows = site.people.size | divided_by: 3.0 | ceil %} {% for i in (1..rows) %} {% assign offset = forloop.index0 | times: 3 %} {% assign offset = offset - 3 %}

{% for item in site.people limit:3 offset:offset %}
{% avatar user=item.github size=200 %}

{{ item.description }}

{% endfor %}
{% endfor %}