wizard

placeholder description
git clone git@git.shmage.xyz/wizard.git
Log | Files | Refs | README

commit 8c4df57d4fe10a503d3699a4b6cae847fe8e00d5
parent 2ddb8878d6b3de9c0a8b7ef967554c4fb67c464c
Author: Adam Sullovey <adam.sullovey+git@gmail.com>
Date:   Fri, 22 Sep 2017 21:34:51 -0400

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.

Diffstat:
Mlayouts/_default/list.html | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/layouts/_default/list.html b/layouts/_default/list.html @@ -1,10 +1,10 @@ {{ partial "header.html" . }} <main> - {{ $paginator := .Paginate (where .Site.Pages "Type" "post") }} + {{ $paginator := .Paginate (where .Data.Pages "Type" "post") }} {{ range $paginator.Pages }} {{ partial "summary.html" . }} {{ end }} {{ partial "pagination.html" . }} </main> {{ partial "sidebar.html" . }} -{{ partial "footer.html" . }} -\ No newline at end of file +{{ partial "footer.html" . }}