{% set activity = [{
avatar: 'assets/images/people/50/guy-1.jpg',
name: 'Luci Bryant',
title: 'Am I learning the right way?',
date: '5 min ago'
}, {
avatar: 'assets/images/people/50/guy-2.jpg',
name: 'Magnus Goldsmith',
title: 'Can someone help me with the basic Setup?',
date: '7 min ago'
}, {
avatar: 'assets/images/people/50/woman-1.jpg',
name: 'Katelyn Rankin',
title: 'I think this is the right way?',
date: '12 min ago'
}] %}
{% import 'components/forum/activity-item.html' as forum_activity_item %}
{% for item in activity %}
{{ forum_activity_item.component(item=item, prefix=prefix) }}
{% endfor %}