How to split foreach in multiple sections

I have the following code, but I cant get it working. I like to display all post starting from the 3th child. I want this because I want to show the first two bigger and add a title inbetween the two foreaches. I added screenshot for reference.

  <?php $items = $page->children()->listed()->nth(3); ?>
  <?php foreach($items as $item): ?>

     <h4><?= $item->title() ?></h4>

  <?php endforeach ?>

I think you’ll like the offset() pages method. :slight_smile:

Perfect! This works like a charm.

FYI: Like first() and last(), nth() only returns a single element from the collection.