diff --git a/README.md b/README.md
index 0260b26e..70bc17de 100644
--- a/README.md
+++ b/README.md
@@ -816,10 +816,10 @@ Use these CSS selectors to extend the default styling:
Appears with .paige-article
for a page with kind "taxonomy".
.paige-term
Appears with .paige-article
for a page with kind "term".
+ .paige-term
+ A page term.
.paige-terms
The page terms.
- .paige-terms-inner
- A page term.
.paige-title
The page title.
.paige-toc
diff --git a/exampleSite/content/configuration/style.md b/exampleSite/content/configuration/style.md
index 5fb8925c..05120529 100644
--- a/exampleSite/content/configuration/style.md
+++ b/exampleSite/content/configuration/style.md
@@ -32,7 +32,7 @@ paige:
#paige-pages .paige-date-header { font-style: italic; }
#paige-pages .paige-date { font-style: italic; }
#paige-pages .paige-summary { font-style: italic; }
- #paige-pages .paige-terms-inner { font-style: italic; }
+ #paige-pages .paige-term { font-style: italic; }
tags: ["singles", "style"]
title: "Style Configuration"
weight: 20
@@ -76,5 +76,5 @@ paige:
#paige-pages .paige-date-header { font-style: italic; }
#paige-pages .paige-date { font-style: italic; }
#paige-pages .paige-summary { font-style: italic; }
- #paige-pages .paige-terms-inner { font-style: italic; }
+ #paige-pages .paige-term { font-style: italic; }
```
diff --git a/layouts/partials/paige/metadata.html b/layouts/partials/paige/metadata.html
index 3d13163f..bc259488 100644
--- a/layouts/partials/paige/metadata.html
+++ b/layouts/partials/paige/metadata.html
@@ -47,7 +47,7 @@
{{ end }}
{{ range sort $terms "name" }}
- {{ .name }}
+ {{ .name }}
{{ end }}
{{ end }}
diff --git a/layouts/partials/paige/pages.html b/layouts/partials/paige/pages.html
index 47749c22..809684c1 100644
--- a/layouts/partials/paige/pages.html
+++ b/layouts/partials/paige/pages.html
@@ -91,7 +91,7 @@
{{ end }}
{{ range sort $terms "name" }}
- {{ .name }}
+ {{ .name }}
{{ end }}
{{ end }}