I know this is a stupid question but how do I modify my menu snippet below to only show the folder titles inside another folder. I’m trying to create a static menu that will be above the header and not be dependent on the open page. I have a folder structure like this:
04-extras > 01-our-story > 02-newsletter > 03-catalog > 04-contact
Here is my current menu snippet.
<menu>
<?php
$items = $pages->children()->slice(3);
$last = $items->last();
?>
<?php foreach($items as $p): ?>
<a<?php if($p == $last) echo ' class="last"' ?> href="<?php echo $p->url() ?>"><?php echo html($p->title()) ?></a>
<?php endforeach ?>
</menu>