From 33a3287edf77a10e587ae246f9567a187b766def Mon Sep 17 00:00:00 2001 From: Will Faught Date: Wed, 14 Dec 2022 19:55:28 -0800 Subject: [PATCH] Specify default layouts --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6dff0318..3ab4f903 100644 --- a/README.md +++ b/README.md @@ -306,7 +306,12 @@ 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-main.html`, which includes `paige-title.html`, `paige-description.html`, `paige-date.html`, and `paige-content.html`. To change the page title for all those layouts, change `paige-title.html`. To change the page title for `single.html`, replace the use of `paige-main.html` in `single.html` with the use of `paige-title.html`, `paige-description.html`, `paige-date.html`, and `paige-content.html`, then replace that use of `paige-title.html` with your own design. +For example, the default layouts `home.html`, `list.html`, `single.html`, `taxonomy.html`, and `term.html` include `paige-main.html`, +which includes `paige-title.html`, `paige-description.html`, `paige-date.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-main.html` in `single.html` with the use of `paige-title.html`, `paige-description.html`, `paige-date.html`, and `paige-content.html`, +then replace that use of `paige-title.html` with your own design. ## Design