Skip to content

Instantly share code, notes, and snippets.

@tobias-forkel
Last active January 10, 2016 20:26
Show Gist options
  • Save tobias-forkel/b00f1c41611f56708c19 to your computer and use it in GitHub Desktop.
Save tobias-forkel/b00f1c41611f56708c19 to your computer and use it in GitHub Desktop.
Count subpages and display a simple navigation
/**
* GRAV
*
* @tags Grav, Flatfile, CMS, Theme, Snippet, Navigation, Dropdown, Variable, Count, Subpages, Loop, Twig
* @url https://getgrav.org
*/
<div class="container">
{% set childs = page.children.visible|length %}
{% if childs > 0 %}
<ul>
{% for child in page.children.visible %}
<li><a href="{{ child.url }}">{{ child.menu }}</a></li>
{% endfor %}
</ul>
{% endif %}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment