diff --git a/themes/hugo-theme-ipng/layouts/_default/list.html b/themes/hugo-theme-ipng/layouts/_default/list.html
index 8f388cb..b635de4 100644
--- a/themes/hugo-theme-ipng/layouts/_default/list.html
+++ b/themes/hugo-theme-ipng/layouts/_default/list.html
@@ -3,34 +3,7 @@
{{ .Title }}
- {{ if default true .Site.Params.showTaxonomyLinks }}
-
-
- {{- /* code for figuring out where to archives page is, if anywhere */ -}}
- {{ $archivesExists := false }}
- {{ $archivesPageTitle := "" }}
- {{ $archivesPagePermalink := "" }}
- {{ range .Site.AllPages }}
- {{ if eq .Layout "archives" }}
- {{ $archivesExists = true }}
- {{ $archivesPagePermalink = .Permalink }}
- {{ with .Title }}
- {{ $archivesPageTitle = . }}
- {{ end }}
- {{ end }}
- {{ end }}
- {{ if $archivesExists }}
- - {{ default "Archives" $archivesPageTitle }}
- {{ end }}
-
- {{ range $taxonomyName, $taxonomy := .Site.Taxonomies }}
- {{ if or (in $taxonomyName "categ") (in $taxonomyName "tag") }}
- - {{ $taxonomyName }}
- {{ end }}
- {{ end }}
-
-
- {{ end }}
+Here’s a sitemap of informational articles and papers in reversed chronological order:
{{- if .Pages -}}
{{- $pages := (where .Pages ".Draft" false) -}}
@@ -42,9 +15,11 @@
{{- $pages = .Paginate $pages -}}
{{- end -}}
+
{{ partial "pagination.html" . }}
{{- end -}}