{# Renders a menu with any child static pages #} {% set parentOrSelf = page.parent ?: page %} {% set childPages = parentOrSelf.children %}
{{ parentOrSelf.title }}
{% for childPage in childPages if not childPage.navigation_hidden %}
{{ childPage.title }}
{% endfor %}