Merge pull request #6 from adamsullovey/fix-list-pages-not-filtering

fix list page filtering
This commit is contained in:
Vimux 2017-09-23 17:09:41 +03:00 committed by GitHub
commit 2f154564a1
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
{{ partial "header.html" . }} {{ partial "header.html" . }}
<main> <main>
{{ $paginator := .Paginate (where .Site.Pages "Type" "post") }} {{ $paginator := .Paginate (where .Data.Pages "Type" "post") }}
{{ range $paginator.Pages }} {{ range $paginator.Pages }}
{{ partial "summary.html" . }} {{ partial "summary.html" . }}
{{ end }} {{ end }}
{{ partial "pagination.html" . }} {{ partial "pagination.html" . }}
</main> </main>
{{ partial "sidebar.html" . }} {{ partial "sidebar.html" . }}
{{ partial "footer.html" . }} {{ partial "footer.html" . }}