Make it possible to hide pages from the menu

This commit is contained in:
Mikkel Munch Mortensen 2019-02-11 15:33:46 +01:00
parent 92e869be03
commit 8aa78bfcda
Signed by untrusted user: decibyte
GPG Key ID: 261C257C74AA764B
1 changed files with 5 additions and 3 deletions

View File

@ -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>