I'm using Bolt cms for my new website and I want to display an overview of entries (news items). That list must have all the entries except for the latest 5 items. I'm fairly new with it, so I'm not familiar with all the possibilities Twig has.
I can use a % for % loop to skip the latest entries. But I don't know the exact code for this. Can someone help me and explain why the used code is used?
First, get a bunch of entries:
Then use a for loop to take only the last five out of ten:
Note that slice slice starts at '0', instead of '1'.