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()),