After quite a bit of to-ing and fro-ing, the foreach statement looks like:
Code: Select all
<?php foreach ($staticContent as $staticPage): ?>
<?php if (!$staticPage->isChild() && $staticPage->template() !== "hidden"): ?>
<li class="<?php echo ($staticPage->permalink()==$page->permalink())?'active':'' ?>"><a href="<?php echo $staticPage->permalink() ?>#main"><?php echo $staticPage->title() ?></a></li>
<?php endif; ?>
<?php endforeach ?>Thank you!

