diff --git a/layouts/_default/taxonomy.html b/layouts/_default/taxonomy.html index e2d1505..711fd4e 100644 --- a/layouts/_default/taxonomy.html +++ b/layouts/_default/taxonomy.html @@ -1,16 +1,18 @@ {{ define "main" }} -
- -
-
-
- {{ range .Pages }} -
- {{ partial "summary.html" . }} -
- {{ end }} -
-
+
+
+ {{ .Site.Params.taxonomy_text_copy | default "Below you will find pages that utilize the taxonomy term" }} “{{ .Title }}” +
+
+ {{ range .Paginator.Pages }} +
+ {{ if .Site.Params.list_post_summary_with_image }} + {{- partial "summary-with-image.html" . -}} + {{ else }} + {{- partial "summary.html" . -}} + {{ end }} +
+ {{ end }} +
+ {{- template "_internal/pagination.html" . -}} {{ end }}