From 1e4f14fd67d22063ec8d4c81766318d0dd1e2195 Mon Sep 17 00:00:00 2001 From: SeanDMR Date: Wed, 2 Nov 2016 07:58:16 +0000 Subject: [PATCH] changed liquid in sidebar.html to only show the first page of any nodes using layout: page (i.e. blog now only appears once). Uses node.url to check --- _includes/sidebar.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/_includes/sidebar.html b/_includes/sidebar.html index 586f47b2d74..57a90acb836 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -20,7 +20,9 @@

{% assign pages_list = site.pages %} {% for node in pages_list %} {% if node.title != null %} - {% if node.layout == "page" %} + {% if node.url contains "page" %} + {% comment %} Do nothing {% endcomment %} + {% else %} {{ node.title }} {% endif %} {% endif %}