diff options
-rw-r--r-- | blog/_includes/menubar.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blog/_includes/menubar.html b/blog/_includes/menubar.html index 02c8860..c1ccd77 100644 --- a/blog/_includes/menubar.html +++ b/blog/_includes/menubar.html @@ -4,7 +4,7 @@ <a class="page-link" href="{{ site.baseurl_root | append: "registration" }}">{% t titles.registration %}</a> {% endif %} {% for page in site.pages %} - {% if page.title %} + {% if page.title and (!page.hidden == true) %} <a class="page-link" href="{{ page.url | prepend: site.baseurl | remove: 'index.html' }}">{% page_title page.title %}</a> {% endif %} {% endfor %} |