{{ $posts := where .RegularPagesRecursive "Layout" "!=" "search" }}
- {{ $numShow = site.Params.features.pagination.maxPostsPerPage | default 12}}
+ {{ $numShow := site.Params.features.pagination.maxPostsPerPage | default 12}}
{{ $paginator := .Paginate $posts $numShow }}
{{ range $paginator.Pages }}
{{ if .Layout }}
diff --git a/layouts/categories/list.html b/layouts/categories/list.html
index 96b315d7d..5a79b8fd2 100644
--- a/layouts/categories/list.html
+++ b/layouts/categories/list.html
@@ -33,7 +33,7 @@
{{ $posts := where .RegularPagesRecursive "Layout" "!=" "search" }}
- {{ $numShow = site.Params.features.pagination.maxPostsPerPage | default 12}}
+ {{ $numShow := site.Params.features.pagination.maxPostsPerPage | default 12}}
{{ $paginator := .Paginate $posts $numShow }}
{{ range $paginator.Pages }}
{{ if .Layout }}
diff --git a/layouts/tags/list.html b/layouts/tags/list.html
index 074a1e1e7..514a14156 100644
--- a/layouts/tags/list.html
+++ b/layouts/tags/list.html
@@ -33,7 +33,7 @@
{{ $posts := where .RegularPagesRecursive "Layout" "!=" "search" }}
- {{ $numShow = site.Params.features.pagination.maxPostsPerPage | default 12}}
+ {{ $numShow := site.Params.features.pagination.maxPostsPerPage | default 12}}
{{ $paginator := .Paginate $posts $numShow }}
{{ range $paginator.Pages }}
{{ if .Layout }}