quartz/quartz.layout.ts
2023-09-22 12:59:00 -05:00

47 lines
1.4 KiB
TypeScript

import { PageLayout, SharedLayout } from "./quartz/cfg"
import * as Component from "./quartz/components"
// components shared across all pages
export const sharedPageComponents: SharedLayout = {
head: Component.Head(),
header: [],
footer: Component.Footer({
links: {
"Source code": "https://github.com/bfahrenfort/quartz",
"RSS": "https://be-far.com/index.xml"
},
//remark_config: config.plugins.transformers.find((e) => {e.name === "Remark42"})?.options
}),
}
// components for pages that display a single page (e.g. a single note)
export const defaultContentPageLayout: PageLayout = {
beforeBody: [Component.ArticleTitle(), Component.ContentMeta(), Component.TagList()],
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.Explorer()),
//Component.TableOfContents(),
],
right: [
Component.Graph(),
Component.DesktopOnly(Component.TableOfContents()),
//Component.MobileOnly(Component.Explorer()),
Component.Backlinks(),
],
}
// components for pages that display lists of pages (e.g. tags or folders)
export const defaultListPageLayout: PageLayout = {
beforeBody: [Component.ArticleTitle()],
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
],
right: [],
}