Is there anyway to group a certain amount of entries in an entries:listing tag?
For example:
{{ entries:listing folder="favorite*" limit="12" paginate="true" }}
{{# for entries 1-3 #}}
Do This
{{# end #}}
{{# for entries 4-6 #}}
Do This
{{# end #}}
{{# for entries 7-9 #}}
Do This
{{# end #}}
{{# for entries 10-12 #}}
Do This
{{# end #}}
{{ /entries:listing }}
{{ entries:pagination folder="favorite*" limit="12" }}
{{ if previous_page }}
<a href="{{ previous_page }}">Previous Page</a>
{{ endif }}
{{ if next_page }}
<a href="{{ next_page }}">Next Page</a>
{{ endif }}
{{ /entries:pagination }}
Can explain more in depth if needed, thanks in advance. Really loving Statamic!