forked from data.coop/website
Make it possible to hide pages from the menu
This commit is contained in:
parent
92e869be03
commit
8aa78bfcda
|
@ -24,9 +24,11 @@
|
|||
|
||||
<nav>
|
||||
{% for page in site.pages %}
|
||||
{% if page.title %}
|
||||
<a href="{{ page.url | relative-url }}">{{ page.title }}</a>
|
||||
{% endif %}
|
||||
{% unless page.in_menu == false %}
|
||||
{% if page.title %}
|
||||
<a href="{{ page.url | relative-url }}">{{ page.title }}</a>
|
||||
{% endif %}
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
</nav>
|
||||
</header>
|
||||
|
|
Loading…
Reference in a new issue