Returns a $pages collection with all children of children in the page's directory.
<ul>
<?php foreach(page('blog')->grandChildren() as $item): ?>
<li>
<a href="<?php echo $item->url() ?>">
<?php echo html($item->title()) ?>
</a>
</li>
<?php endforeach ?>
</ul>
The code above will give you a list like this: