{% assign limit = include.limit | default: 5 %} {% assign offset = include.offset | default: 0 %} {% assign size = include['size'] | default: 'sm' %}
{% for person in people limit: limit offset: offset %} {% include "ui/avatar.html" person=person size=size rounded=true %} {% endfor %} {% if include.text %} {% include "ui/avatar.html" placeholder=include.text size=size rounded=true %} {% endif %}