-
-
Save rhukster/76a4087c39a7965ed5fd to your computer and use it in GitHub Desktop.
menu looping over Grav pages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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