From c8e2bc5dd53604f9ccd756f9a664fde0567e06fc Mon Sep 17 00:00:00 2001 From: ennea Date: Thu, 13 Mar 2025 00:51:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4=E9=9D=A2=E5=8C=85=E5=B1=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- quartz.layout.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/quartz.layout.ts b/quartz.layout.ts index 5814385db..e26d84b56 100644 --- a/quartz.layout.ts +++ b/quartz.layout.ts @@ -20,11 +20,10 @@ export const sharedPageComponents: SharedLayout = { } // components for pages that display a single page (e.g. a single note) -export const defaultContentPageLayout: PageLayout = {  +export const defaultContentPageLayout: PageLayout = { beforeBody: [ - Component.Breadcrumbs(), Component.ArticleTitle(), - Component.ContentMeta(),  + Component.ContentMeta(), Component.TagList(), ], left: [ @@ -49,8 +48,8 @@ export const defaultContentPageLayout: PageLayout = {  } // components for pages that display lists of pages (e.g. tags or folders) -export const defaultListPageLayout: PageLayout = {  - beforeBody: [Component.Breadcrumbs(), Component.ArticleTitle(), Component.ContentMeta()], +export const defaultListPageLayout: PageLayout = { + beforeBody: [Component.ArticleTitle(), Component.ContentMeta()], left: [ Component.PageTitle(), Component.MobileOnly(Component.Spacer()),