{% assign limit = include.limit | default: false %}
{% for item in site.data.activity limit:limit %} {% assign person = site.data.people[forloop.index] %}
{% include ui/avatar.html person=person %}
{{ item.text | replace: '%p', person.full_name | replace: '%c', person.company }}
{{ forloop.index | random_date_ago: 4 | timeago }}
{% if forloop.index < 5 %}
{% endif %}
{% endfor %}