{% assign limit = include.limit | default: 10 %} {% assign offset = include.offset | default: 0 %}

{{ include.title | default: 'Top users' }}

{% assign colors = 'green,red,yellow,x,x' | split: ',' %} {% for person in site.data.people limit: limit offset: offset %} {% assign color = forloop.index | plus: 5 | random_item: colors %} {% endfor %}