diff --git a/README.md b/README.md
index c9225476..580feb38 100644
--- a/README.md
+++ b/README.md
@@ -824,14 +824,14 @@ Page and sub-page classes:
+
{{ range (sort $page.Pages "Title") }}
-
@@ -16,6 +16,6 @@
{{ end }}
{{ else }}
- {{ partial "paige/subpages.html" $page }}
+ {{ partial "paige/pages.html" $page }}
{{ end }}
{{ end }}
diff --git a/layouts/_default/term.html b/layouts/_default/term.html
index 0bcc5a71..40c30434 100644
--- a/layouts/_default/term.html
+++ b/layouts/_default/term.html
@@ -2,5 +2,5 @@
{{ $page := . }}
{{ partial "paige/article.html" $page }}
-{{ partial "paige/subpages.html" $page }}
+{{ partial "paige/pages.html" $page }}
{{ end }}
diff --git a/layouts/partials/paige/subpage.html b/layouts/partials/paige/page.html
similarity index 97%
rename from layouts/partials/paige/subpage.html
rename to layouts/partials/paige/page.html
index 404e34f9..29c191b0 100644
--- a/layouts/partials/paige/subpage.html
+++ b/layouts/partials/paige/page.html
@@ -44,7 +44,7 @@
{{ end }}
{{ $flags = delimit ($flags | uniq) " " }}
-{{ $class := delimit (slice "mb-3" "paige-subpage" "w-100" | append $flags | uniq | sort) " " }}
+{{ $class := delimit (slice "mb-3" "paige-page" "w-100" | append $flags | uniq | sort) " " }}
{{ with $title }}
diff --git a/layouts/partials/paige/subpages.html b/layouts/partials/paige/pages.html
similarity index 92%
rename from layouts/partials/paige/subpages.html
rename to layouts/partials/paige/pages.html
index be7d09de..fbb59425 100644
--- a/layouts/partials/paige/subpages.html
+++ b/layouts/partials/paige/pages.html
@@ -11,7 +11,7 @@
{{ end }}
{{ range $k, $v := . }}
- {{ partial "paige/subpage.html" (site.GetPage $k) }}
+ {{ partial "paige/page.html" (site.GetPage $k) }}
{{ end }}
{{ end }}
@@ -23,7 +23,7 @@
{{ end }}
{{ range . }}
- {{ partial "paige/subpage.html" . }}
+ {{ partial "paige/page.html" . }}
{{ end }}
{{ end }}
@@ -57,7 +57,7 @@
{{ $pinned := where . "Params.paige.pin" true }}
{{ range $pinned.ByPublishDate.Reverse }}
- {{ partial "paige/subpage.html" . }}
+ {{ partial "paige/page.html" . }}
{{ end }}
{{ $unpinned := complement $pinned . }}
@@ -68,7 +68,7 @@
{{ range .Pages }}
- {{ partial "paige/subpage.html" . }}
+ {{ partial "paige/page.html" . }}
{{ end }}
{{ end }}