Tests
Build Quartz site / build (push) Successful in 1m32s Details

This commit is contained in:
Peaceultime 2023-12-15 00:52:22 +01:00
parent 55e5ec0205
commit 07da6c4769
2 changed files with 5 additions and 2 deletions

View File

@ -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(),

View File

@ -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(),
],