From c26a61ea2beec6f38269edc8f522206a2c11239a Mon Sep 17 00:00:00 2001 From: Will Faught Date: Tue, 20 Dec 2022 15:31:09 -0800 Subject: [PATCH] Clean up wording, formatting for customization example --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5dc1cea1..95ad5fb5 100644 --- a/README.md +++ b/README.md @@ -407,11 +407,15 @@ If `partials/paige-body-last.html` exists in the site, it is included at the end Most code is in partial templates that are included by the default layouts. Elements can easily be added or changed by overriding the corresponding layout or partial template. -For example, the default layouts `home.html`, `list.html`, `single.html`, `taxonomy.html`, and `term.html` include `paige-article.html`, -which includes `paige-title.html`, `paige-description.html`, `paige-metadata.html`, `paige-toc.html`, and `paige-content.html`. +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`. 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-date.html`, and `paige-content.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. ## Design