diff --git a/layouts/partials/paige/pages.html b/layouts/partials/paige/pages.html
index 06e2c516..01cfa0d0 100644
--- a/layouts/partials/paige/pages.html
+++ b/layouts/partials/paige/pages.html
@@ -3,11 +3,10 @@
{{ $collections := slice }}
{{ $sections := where $page.Pages "Kind" "section" }}
{{ $pages := where $page.Pages "Kind" "in" (slice "page" "term") }}
-{{ $taxonomies := cond $page.IsHome site.Taxonomies slice }}
-{{ range $k, $v := $taxonomies }}
- {{ if gt (len $v) 0 }}
- {{ $collections = $collections | append $k }}
+{{ range $name, $taxonomy := cond $page.IsHome site.Taxonomies slice }}
+ {{ if gt (len $taxonomy) 0 }}
+ {{ $collections = $collections | append $taxonomy.Page }}
{{ end }}
{{ end }}
@@ -18,7 +17,7 @@
{{ end }}
{{ range . }}
- {{ partial "paige/page.html" (site.GetPage .) }}
+ {{ partial "paige/page.html" . }}
{{ end }}
{{ end }}