From 42c06c260cebb88172b764a2e73b4ab3fdf2a94e Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Wed, 14 Sep 2016 16:35:04 +0300 Subject: [PATCH] layouts: Only list posts on front page and sidebar We don't want to list other top-level pages like "About" here, they will be enumerated in the header. --- layouts/_default/list.html | 2 +- layouts/partials/sidebar.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 951326c..b93a063 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -2,7 +2,7 @@ {{ $num_recent_posts := .Site.Params.num_recent_posts | default "5" }} - {{ range first $num_recent_posts .Data.Pages }} + {{ range first $num_recent_posts (where .Data.Pages "Section" "post") }} {{ .Render "summary"}} {{ end }} diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html index dcf07c0..b72d1c7 100644 --- a/layouts/partials/sidebar.html +++ b/layouts/partials/sidebar.html @@ -11,7 +11,7 @@