43 lines
992 B
TypeScript
43 lines
992 B
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: [
|
||
|
|
Component.Darkmode(),
|
||
|
|
Component.PageTitle(),
|
||
|
|
Component.Search(),
|
||
|
|
],
|
||
|
|
afterBody: [
|
||
|
|
Component.MobileOnly(Component.Separator()),
|
||
|
|
],
|
||
|
|
footer: Component.Footer(),
|
||
|
|
}
|
||
|
|
|
||
|
|
// components for pages that display a single page (e.g. a single note)
|
||
|
|
export const defaultContentPageLayout: PageLayout = {
|
||
|
|
beforeBody: [
|
||
|
|
Component.ArticleTitle(),
|
||
|
|
],
|
||
|
|
left: [
|
||
|
|
],
|
||
|
|
right: [
|
||
|
|
Component.Graph(),
|
||
|
|
Component.DesktopOnly(Component.TableOfContents()),
|
||
|
|
Component.Backlinks(),
|
||
|
|
],
|
||
|
|
}
|
||
|
|
|
||
|
|
// components for pages that display lists of pages (e.g. tags or folders)
|
||
|
|
export const defaultListPageLayout: PageLayout = {
|
||
|
|
beforeBody: [
|
||
|
|
Component.ArticleTitle(),
|
||
|
|
],
|
||
|
|
left: [
|
||
|
|
],
|
||
|
|
right: [
|
||
|
|
Component.DesktopOnly(Component.Graph()),
|
||
|
|
],
|
||
|
|
}
|