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",
|
||||
enableSPA: false,
|
||||
enablePopovers: true,
|
||||
analytics: null,
|
||||
baseUrl: "peaceultime.com/static/obsidian",
|
||||
ignorePatterns: ["private", "templates", ".obsidian"],
|
||||
defaultDateType: "created",
|
||||
|
|
@ -62,7 +63,6 @@ const config: QuartzConfig = {
|
|||
Plugin.TagPage(),
|
||||
Plugin.ContentIndex({
|
||||
enableSiteMap: true,
|
||||
enableRSS: true,
|
||||
}),
|
||||
Plugin.Assets(),
|
||||
Plugin.Static(),
|
||||
|
|
|
|||
|
|
@ -5,7 +5,9 @@ import * as Component from "./quartz/components"
|
|||
export const sharedPageComponents: SharedLayout = {
|
||||
head: Component.Head(),
|
||||
header: [],
|
||||
footer: [],
|
||||
footer: Component.Footer({
|
||||
links: null,
|
||||
}),
|
||||
}
|
||||
|
||||
// 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()),
|
||||
],
|
||||
right: [
|
||||
Component.Graph(),
|
||||
Component.DesktopOnly(Component.TableOfContents()),
|
||||
Component.Backlinks(),
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in New Issue