mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-24 15:05:42 -05:00
75 lines
2.3 KiB
TypeScript
75 lines
2.3 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: [Component.PageTitle(), Component.Search(), Component.Darkmode()],
|
|
header: [],
|
|
footer: Component.Footer({
|
|
links: {
|
|
About: "/About",
|
|
Blog: "https://miguelpimentel.do/",
|
|
Meta: "/Meta",
|
|
GitHub: "https://github.com/semanticdata/forgetful-notes/",
|
|
// Journal: "/journal",
|
|
// Source: "https://github.com/semanticdata/forgetful-notes/",
|
|
},
|
|
}),
|
|
}
|
|
|
|
// components for pages that display a single page (e.g. a single note)
|
|
export const defaultContentPageLayout: PageLayout = {
|
|
beforeBody: [Component.ArticleTitle()],
|
|
left: [Component.PageTitle(),
|
|
Component.Search(),
|
|
Component.Darkmode(),
|
|
Component.MobileOnly(Component.Spacer()),
|
|
Component.DesktopOnly(Component.Explorer())],
|
|
right: [
|
|
Component.Graph(),
|
|
Component.DesktopOnly(Component.TableOfContents()),
|
|
Component.Backlinks(),
|
|
],
|
|
|
|
// beforeBody: [
|
|
// Component.Breadcrumbs(),
|
|
// Component.ArticleTitle(),
|
|
// Component.ContentMeta(),
|
|
// Component.TagList(),
|
|
// ],
|
|
// left: [
|
|
// Component.PageTitle(),
|
|
// Component.MobileOnly(Component.Spacer()),
|
|
// Component.Search(),
|
|
// Component.Darkmode(),
|
|
// Component.DesktopOnly(Component.Explorer()),
|
|
// ],
|
|
// 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: [Component.PageTitle(),
|
|
Component.Search(),
|
|
Component.Darkmode(),
|
|
Component.MobileOnly(Component.Spacer()),
|
|
Component.DesktopOnly(Component.Explorer())],
|
|
right: [Component.MobileOnly(Component.Spacer())],
|
|
|
|
// beforeBody: [Component.Breadcrumbs(), Component.ArticleTitle(), Component.ContentMeta()],
|
|
// left: [
|
|
// Component.PageTitle(),
|
|
// Component.MobileOnly(Component.Spacer()),
|
|
// Component.Search(),
|
|
// Component.Darkmode(),
|
|
// Component.DesktopOnly(Component.Explorer()),
|
|
// ],
|
|
// right: [],
|
|
}
|