From 8c4df57d4fe10a503d3699a4b6cae847fe8e00d5 Mon Sep 17 00:00:00 2001 From: Adam Sullovey Date: Fri, 22 Sep 2017 21:34:51 -0400 Subject: [PATCH] fix list page filtering not working When I started using the blank theme, I found urls like /tags/js would list all posts instead of just posts tagged 'js'. Changing '.Site.Pages' to 'Data.Pages' fixes this, and now my site can have lists that filter posts by category and tags. --- layouts/_default/list.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/_default/list.html b/layouts/_default/list.html index e8560c6..bc7f4e6 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,10 +1,10 @@ {{ partial "header.html" . }}
- {{ $paginator := .Paginate (where .Site.Pages "Type" "post") }} + {{ $paginator := .Paginate (where .Data.Pages "Type" "post") }} {{ range $paginator.Pages }} {{ partial "summary.html" . }} {{ end }} {{ partial "pagination.html" . }}
{{ partial "sidebar.html" . }} -{{ partial "footer.html" . }} \ No newline at end of file +{{ partial "footer.html" . }}