From 0b8e29bad4fdcd929920c26fadcefba476f17285 Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 8 Nov 2023 20:53:36 -0800 Subject: [PATCH] Correct `layout` values in site content front matter The value in the `layout` field of the website content source file front matter must match the name of the layout template file. These pages were incorrectly configured to use a layout named "page" even though no such layout exists. They are hereby changed to use the "basic" layout as originally intended. --- site/content/about/_index.md | 2 +- site/content/glossary/_index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/about/_index.md b/site/content/about/_index.md index d969755..d12cbc9 100644 --- a/site/content/about/_index.md +++ b/site/content/about/_index.md @@ -1,7 +1,7 @@ --- title: About breadcrumb: about -layout: page +layout: basic page-type: static --- diff --git a/site/content/glossary/_index.md b/site/content/glossary/_index.md index 2461b70..bd0c684 100644 --- a/site/content/glossary/_index.md +++ b/site/content/glossary/_index.md @@ -1,7 +1,7 @@ --- title: Glossary breadcrumb: glossary -layout: page +layout: basic page-type: static ---