diff --git a/README.md b/README.md
index 4828bf7c..81fcd222 100644
--- a/README.md
+++ b/README.md
@@ -479,22 +479,22 @@ These are the rest of the named parameters:
## Customization
-If `partials/paige-head-last.html` exists in the site, it is included at the end of the head tag.
-If `partials/paige-body-last.html` exists in the site, it is included at the end of the body tag.
+If `partials/paige/head-last.html` exists in the site, it is included at the end of the head tag.
+If `partials/paige/body-last.html` exists in the site, it is included at the end of the body tag.
Most code is in partial templates that are included by the default layouts.
-Elements can easily be added, changed, or removed by overriding the corresponding default layout or partial template.
+Elements can be added, changed, or removed easily by overriding the corresponding default layout or partial template.
For example, the default layouts
`home.html`, `list.html`, `single.html`, `taxonomy.html`, and `term.html`
-include the partial template `paige-article.html`,
-which includes the partial templates
-`paige-title.html`, `paige-description.html`, `paige-metadata.html`, `paige-toc.html`, and `paige-content.html`.
-To change the page title for those default layouts, change `paige-title.html`.
+include the partial template `paige/article.html`.
+`paige/article.html` includes the partial templates `paige/metadata.html`, `paige/toc.html`, and `paige/content.html`.
+`paige/metadata.html` includes the partial templates `paige/title.html`, `paige/description.html`, and `paige/other.html`.
+To change the page title for those default layouts, change `paige/title.html`.
To change the page title for `single.html`,
-replace the use of `paige-article.html` in `single.html` with the use of
-`paige-title.html`, `paige-description.html`, `paige-metadata.html`, `paige-toc.html`, and `paige-content.html`,
-then replace that use of `paige-title.html` with your own design.
+replace the use of `paige/article.html` in `single.html` with the use of
+`paige/title.html`, `paige/description.html`, `paige/other.html`, `paige/toc.html`, and `paige/content.html`,
+then replace that use of `paige/title.html` with your own design.
## Design
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 0ffbfd43..95945f28 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -2,22 +2,22 @@
{{ $rtl := eq .Language.LanguageDirection "rtl" }}
{{ $lang := .Site.LanguageCode | default .Site.Language.Lang }}
- {{ partial "paige-head.html" . }}
+ {{ partial "paige/head.html" . }}
{{ end }}
diff --git a/layouts/partials/paige-pagination.html b/layouts/partials/paige/pagination.html
similarity index 100%
rename from layouts/partials/paige-pagination.html
rename to layouts/partials/paige/pagination.html
diff --git a/layouts/partials/paige-script.html b/layouts/partials/paige/script.html
similarity index 100%
rename from layouts/partials/paige-script.html
rename to layouts/partials/paige/script.html
diff --git a/layouts/partials/paige-search.html b/layouts/partials/paige/search.html
similarity index 100%
rename from layouts/partials/paige-search.html
rename to layouts/partials/paige/search.html
diff --git a/layouts/partials/paige-social.html b/layouts/partials/paige/social.html
similarity index 100%
rename from layouts/partials/paige-social.html
rename to layouts/partials/paige/social.html
diff --git a/layouts/partials/paige-style.html b/layouts/partials/paige/style.html
similarity index 100%
rename from layouts/partials/paige-style.html
rename to layouts/partials/paige/style.html
diff --git a/layouts/partials/paige-title.html b/layouts/partials/paige/title.html
similarity index 100%
rename from layouts/partials/paige-title.html
rename to layouts/partials/paige/title.html
diff --git a/layouts/partials/paige-toc.html b/layouts/partials/paige/toc.html
similarity index 100%
rename from layouts/partials/paige-toc.html
rename to layouts/partials/paige/toc.html