From 07aa95912add9e3dda8ebabe89f4815925705361 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Mon, 8 Jul 2024 10:55:53 -0700 Subject: [PATCH] Remove layout from page titles --- exampleSite/content/layouts/cloud/_index.md | 2 +- exampleSite/content/layouts/search.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/exampleSite/content/layouts/cloud/_index.md b/exampleSite/content/layouts/cloud/_index.md index d76097fd..29186584 100644 --- a/exampleSite/content/layouts/cloud/_index.md +++ b/exampleSite/content/layouts/cloud/_index.md @@ -5,7 +5,7 @@ date = 2024-06-03T21:21:05-07:00 description = "Demonstration of the cloud layout." layout = "paige/cloud" tags = ["cloud"] -title = "Cloud Layout" +title = "Cloud" weight = 20 +++ diff --git a/exampleSite/content/layouts/search.md b/exampleSite/content/layouts/search.md index a69e8ca3..8e801742 100644 --- a/exampleSite/content/layouts/search.md +++ b/exampleSite/content/layouts/search.md @@ -4,7 +4,7 @@ categories = ["layouts", "paige"] description = "Demonstration of the search layout." layout = "paige/search" tags = ["search"] -title = "Search Layout" +title = "Search" weight = 20 [paige.feed] hide_page = true @@ -26,7 +26,7 @@ Example `content/layouts/search.md`: ```yaml --- layout: "paige/search" -title: "Search Layout" +title: "Search" --- ```