| | |
| | | import { PageLayout } from "./quartz/cfg" |
| | | import { PageLayout, SharedLayout } from "./quartz/cfg" |
| | | import * as Component from "./quartz/components" |
| | | |
| | | // components shared across all pages |
| | | export const sharedPageComponents = { |
| | | export const sharedPageComponents: SharedLayout = { |
| | | head: Component.Head(), |
| | | header: [], |
| | | footer: Component.Footer({ |
| | |
| | | |
| | | // components for pages that display a single page (e.g. a single note) |
| | | export const defaultContentPageLayout: PageLayout = { |
| | | beforeBody: [Component.ArticleTitle(), Component.ReadingTime(), Component.TagList()], |
| | | beforeBody: [Component.ArticleTitle(), Component.ContentMeta(), Component.TagList()], |
| | | left: [ |
| | | Component.PageTitle(), |
| | | Component.MobileOnly(Component.Spacer()), |