{% collection pages, limit: 10, tag: fun, name: things %}
{% for thing in things.entries %} 
 {% if forloop.first %}
  {{thing.name}}
 {% elsif forloop.last %}
  {{forloop.index}}
 {% endif %}
{% endfor %}


{%for i in array.items limit: 3 %}
  {{i}}
{%endfor%}
next
{%for i in array.items offset:continue limit: 3 %}
  {{i}}
{%endfor%}
next
{%for i in array.items offset:continue limit: 3 %}
  {{i}}
{%endfor%}


{%for i in array.items offset:continue limit:3 %}
  {{i}}
{%endfor%}