Tests
Build Quartz site / build (push) Successful in 1m32s
Details
Build Quartz site / build (push) Successful in 1m32s
Details
This commit is contained in:
parent
55e5ec0205
commit
07da6c4769
|
|
@ -6,6 +6,7 @@ const config: QuartzConfig = {
|
||||||
pageTitle: "Prototype Aspect",
|
pageTitle: "Prototype Aspect",
|
||||||
enableSPA: false,
|
enableSPA: false,
|
||||||
enablePopovers: true,
|
enablePopovers: true,
|
||||||
|
analytics: null,
|
||||||
baseUrl: "peaceultime.com/static/obsidian",
|
baseUrl: "peaceultime.com/static/obsidian",
|
||||||
ignorePatterns: ["private", "templates", ".obsidian"],
|
ignorePatterns: ["private", "templates", ".obsidian"],
|
||||||
defaultDateType: "created",
|
defaultDateType: "created",
|
||||||
|
|
@ -62,7 +63,6 @@ const config: QuartzConfig = {
|
||||||
Plugin.TagPage(),
|
Plugin.TagPage(),
|
||||||
Plugin.ContentIndex({
|
Plugin.ContentIndex({
|
||||||
enableSiteMap: true,
|
enableSiteMap: true,
|
||||||
enableRSS: true,
|
|
||||||
}),
|
}),
|
||||||
Plugin.Assets(),
|
Plugin.Assets(),
|
||||||
Plugin.Static(),
|
Plugin.Static(),
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,9 @@ import * as Component from "./quartz/components"
|
||||||
export const sharedPageComponents: SharedLayout = {
|
export const sharedPageComponents: SharedLayout = {
|
||||||
head: Component.Head(),
|
head: Component.Head(),
|
||||||
header: [],
|
header: [],
|
||||||
footer: [],
|
footer: Component.Footer({
|
||||||
|
links: null,
|
||||||
|
}),
|
||||||
}
|
}
|
||||||
|
|
||||||
// components for pages that display a single page (e.g. a single note)
|
// components for pages that display a single page (e.g. a single note)
|
||||||
|
|
@ -24,6 +26,7 @@ export const defaultContentPageLayout: PageLayout = {
|
||||||
Component.DesktopOnly(Component.Explorer()),
|
Component.DesktopOnly(Component.Explorer()),
|
||||||
],
|
],
|
||||||
right: [
|
right: [
|
||||||
|
Component.Graph(),
|
||||||
Component.DesktopOnly(Component.TableOfContents()),
|
Component.DesktopOnly(Component.TableOfContents()),
|
||||||
Component.Backlinks(),
|
Component.Backlinks(),
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue