Skip to content

Instantly share code, notes, and snippets.

@rhukster
Last active October 2, 2017 01:29
Show Gist options
  • Save rhukster/76a4087c39a7965ed5fd to your computer and use it in GitHub Desktop.
Save rhukster/76a4087c39a7965ed5fd to your computer and use it in GitHub Desktop.
menu looping over Grav pages
{% macro loop(page) %}
{% for p in page.children %}
{% if p.visible %}
<li>
<a href="{{ p.url }}">{{ p.menu }}</a>
{% if p.children.count > 0 %}
<ul>
{{ _self.loop(p) }}
</ul>
{% endif %}
</li>
{% endif %}
{% endfor %}
{% endmacro %}
<ul class="topics">
{{ _self.loop(pages) }}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment