forked from jackyzha0/quartz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quartz.layout.ts
103 lines (100 loc) · 3.34 KB
/
quartz.layout.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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(),
],
afterBody: [
Component.Comments({
provider: 'giscus',
options: {
// from data-repo
repo: 'harrellbm/Quartz-Garden',
// from data-repo-id
repoId: 'R_kgDOMhMnDQ',
// from data-category
category: 'Announcements',
// from data-category-id
categoryId: 'DIC_kwDOMhMnDc4Ciuq4',
// where to put the comment input box relative to the comments
// defaults to 'bottom'
inputPosition: "top",
}
}),
],
footer: Component.Footer({
links: {
GitHub: "https://github.com/harrellbm/Quartz-Garden",
"Email": "[email protected]",
},
}),
}
// components for pages that display a single page (e.g. a single note)
export const defaultContentPageLayout: PageLayout = {
beforeBody: [
Component.Breadcrumbs(),
Component.ArticleTitle(),
//Component.ContentMeta(),
Component.ContentMetaCustom({showDates: false, showReadingTime: true, showComma: false, showCustomField: true, customField: ['Note Planted:', 'Last Tended:']}),
//Component.TagList(),
],
left: [
Component.Search(),
Component.Darkmode(),
Component.MobileOnly(Component.Spacer()),
Component.DesktopOnly(Component.Explorer()),
],
right: [
Component.DesktopOnly(Component.TableOfContents()),
Component.Backlinks(),
Component.DesktopOnly(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
scale: 1.5, // default view scale
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?
fontSize: 0.9, // what size should the node labels be?
opacityScale: 1, // how quickly do we fade out the labels when zooming out?
removeTags: [], // what tags to remove from the graph
showTags: true, // whether to show tags in the graph
},
globalGraph: {
drag: true,
zoom: true,
depth: -1,
scale: 0.9,
repelForce: 2.5,
centerForce: 1.5,
linkDistance: 45,
fontSize: 0.6,
opacityScale: 0.9,
removeTags: [], // what tags to remove from the graph
showTags: true, // whether to show tags in the graph
},
})),
Component.RecentNotes({title:"Recent Thoughts", showTags: false}),
],
}
// components for pages that display lists of pages (e.g. tags or folders)
export const defaultListPageLayout: PageLayout = {
beforeBody: [
Component.Breadcrumbs(),
Component.ArticleTitle(),
Component.ContentMetaCustom(),
],
left: [
Component.Search(),
Component.Darkmode(),
Component.MobileOnly(Component.Spacer()),
Component.DesktopOnly(Component.Explorer()),
],
right: [
Component.Graph(),
Component.RecentNotes({title:"Recent Thoughts", showTags: false}),
],
}