Hello
Just getting to grips with Grav, all good so far but I have an issue with navigation that I cannot find an answer to.
I would like to hide some pages from the main navigation and instead list them in the footer section of each page.
I have found if I use ‘visible: false’ that the pages don’t appear in the main navigation which is perfect.
I can then add them to the footer using this code:-
ul
{% for page in pages.children %}
{% if page.visible (‘false’) %}
li a href="{{ page.url }}" {{ page.menu }} /a /li
{% endif %}
{% endfor %}
{% for mitem in site.menu %}
li a href="{{ mitem.link }}" {{ mitem.text }} /a /li
{% endfor %}
/ul
(not sure how to add code with the <> in place)
but this also shows the pages that are marked as visible.
How can I exclude the pages marked as visible from this list?
Or is this the wrong way of solving this issues?