Returns the collection starting from the given offset.
<ul>
<?php foreach($page->children()->offset(10) as $subpage): ?>
<li>
<a href="<?php echo $subpage->url() ?>">
<?php echo html($subpage->title()) ?>
</a>
</li>
<?php endforeach ?>
</ul>