Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vimux/blank.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVimux <Vimux@users.noreply.github.com>2017-09-23 17:09:41 +0300
committerGitHub <noreply@github.com>2017-09-23 17:09:41 +0300
commit2f154564a18ddaeb39fc6264a3ecc66616e1773c (patch)
treec9e3090d451bf612daf9e4dffa855cce0c93177c
parent2ddb8878d6b3de9c0a8b7ef967554c4fb67c464c (diff)
parent8c4df57d4fe10a503d3699a4b6cae847fe8e00d5 (diff)
Merge pull request #6 from adamsullovey/fix-list-pages-not-filtering
fix list page filtering
-rw-r--r--layouts/_default/list.html4
1 files 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" . }}
<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" . }}