digital-garden/.quartz/quartz.layout.ts

86 lines
2.6 KiB
TypeScript
Raw Normal View History

2024-09-02 08:40:46 +03:00
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: [],
2024-09-03 12:18:07 +03:00
afterBody: [
Component.Remark({
options: {
host: 'https://comments.struchkov.dev',
siteId: 'gardenru',
locale: 'ru',
}
}),
],
2024-09-02 08:40:46 +03:00
footer: Component.Footer({
links: {
2024-09-03 12:18:07 +03:00
"About Me": "https://mark.struchkov.dev/cv/",
"B.log": "https://struchkov.dev",
"CV": "https://mark.struchkov.dev/cv/?utm_source=gardenru&utm_medium=organic&utm_campaign=static",
2024-09-02 08:40:46 +03:00
},
}),
}
// components for pages that display a single page (e.g. a single note)
export const defaultContentPageLayout: PageLayout = {
beforeBody: [
Component.Breadcrumbs(),
Component.ArticleTitle(),
Component.ContentMeta(),
],
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.Explorer()),
],
right: [
Component.Graph({
localGraph: {
drag: true, // whether to allow panning the view around
zoom: true, // whether to allow zooming in and out
depth: 1, // how many hops of notes to display
2024-09-02 21:35:14 +03:00
scale: 2, // default view scale
2024-09-02 08:40:46 +03:00
repelForce: 0.5, // how much nodes should repel each other
centerForce: 0.3, // how much force to use when trying to center the nodes
linkDistance: 30, // how long should the links be by default?
2024-09-02 21:35:14 +03:00
fontSize: 0.5, // what size should the node labels be?
opacityScale: 2, // how quickly do we fade out the labels when zooming out?
2024-09-02 08:40:46 +03:00
removeTags: [], // what tags to remove from the graph
2024-09-02 21:35:14 +03:00
showTags: false, // whether to show tags in the graph
2024-09-02 08:40:46 +03:00
},
globalGraph: {
drag: true,
zoom: true,
depth: -1,
2024-09-02 21:35:14 +03:00
scale: 2,
2024-09-02 08:40:46 +03:00
repelForce: 0.5,
centerForce: 0.3,
linkDistance: 30,
2024-09-02 21:35:14 +03:00
fontSize: 0.5,
2024-09-02 08:40:46 +03:00
opacityScale: 1,
removeTags: [], // what tags to remove from the graph
2024-09-02 21:35:14 +03:00
showTags: false, // whether to show tags in the graph
2024-09-02 08:40:46 +03:00
},
}),
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.Breadcrumbs(), Component.ArticleTitle(), Component.ContentMeta()],
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.Explorer()),
],
right: [],
}