Returns a sliced version of the collection starting from a given offset and an optional limited number of items.
<ul>
<?php foreach($page->files()->slice(5,10) as $file): ?>
<li>
<a href="<?php echo $file->url() ?>">
<?php echo html($file->filename()) ?>
</a>
</li>
<?php endforeach ?>
</ul>