quartz-research-note/quartz.layout.ts

42 lines
1.3 KiB
TypeScript
Raw Normal View History

import { PageLayout, SharedLayout } from "./quartz/cfg"
2023-07-26 06:37:24 +00:00
import * as Component from "./quartz/components"
// components shared across all pages
export const sharedPageComponents: SharedLayout = {
2023-07-26 06:37:24 +00:00
head: Component.Head(),
header: [],
footer: Component.Footer({
links: {
"Top": "https://matsuuratomoya.com",
"Mastodon": "https://social.matsuuratomoya.com/@tomoya",
"Twitter": "https://twitter.com/tomoya_nonymous",
"GitHub": "https://github.com/tomoyanonymous",
2023-07-26 06:37:24 +00:00
},
}),
}
// components for pages that display a single page (e.g. a single note)
export const defaultContentPageLayout: PageLayout = {
2023-08-09 04:28:09 +00:00
beforeBody: [Component.ArticleTitle(), Component.ContentMeta(), Component.TagList()],
2023-07-26 06:37:24 +00:00
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.TableOfContents()),
],
right: [Component.Graph(), 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: [],
}