1
0
mirror of https://gitlab.com/MisterBiggs/brain-quartz.git synced 2025-06-16 01:36:40 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
168bf9c3c1 Remove breadcrumbs 2025-06-03 18:06:39 -06:00
7b78f10a45 add personality to the 404 page 2025-06-03 15:58:02 -06:00
1fc0ed04ff make some small site changes 2025-06-03 14:41:12 -06:00
5 changed files with 13 additions and 13 deletions

@ -1 +1 @@
Subproject commit f00654c221f702e71dead9f2b7e784a023a8d77d Subproject commit e1aba949a626956953e11a9f1c8359a585de3359

View File

@ -8,8 +8,8 @@ import * as Plugin from "./quartz/plugins"
*/ */
const config: QuartzConfig = { const config: QuartzConfig = {
configuration: { configuration: {
pageTitle: "Ansons Brain", pageTitle: "Anson's Brain",
pageTitleSuffix: "", pageTitleSuffix: "These are notes that are as rough as it gets.",
enableSPA: true, enableSPA: true,
enablePopovers: true, enablePopovers: true,
analytics: null, analytics: null,
@ -76,7 +76,7 @@ const config: QuartzConfig = {
Plugin.AliasRedirects(), Plugin.AliasRedirects(),
Plugin.ComponentResources(), Plugin.ComponentResources(),
Plugin.ContentPage(), Plugin.ContentPage(),
Plugin.FolderPage(), // Plugin.FolderPage(),
Plugin.TagPage(), Plugin.TagPage(),
Plugin.ContentIndex({ Plugin.ContentIndex({
enableSiteMap: true, enableSiteMap: true,

View File

@ -8,8 +8,7 @@ export const sharedPageComponents: SharedLayout = {
afterBody: [], afterBody: [],
footer: Component.Footer({ footer: Component.Footer({
links: { links: {
GitHub: "https://github.com/jackyzha0/quartz", "ansonbiggs.com": "https://ansonbiggs.com",
"Discord Community": "https://discord.gg/cRFFHYye7t",
}, },
}), }),
} }
@ -17,10 +16,10 @@ export const sharedPageComponents: SharedLayout = {
// 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)
export const defaultContentPageLayout: PageLayout = { export const defaultContentPageLayout: PageLayout = {
beforeBody: [ beforeBody: [
Component.ConditionalRender({ // Component.ConditionalRender({
component: Component.Breadcrumbs(), // component: Component.Breadcrumbs(),
condition: (page) => page.fileData.slug !== "index", // condition: (page) => page.fileData.slug !== "index",
}), // }),
Component.ArticleTitle(), Component.ArticleTitle(),
Component.ContentMeta(), Component.ContentMeta(),
Component.TagList(), Component.TagList(),
@ -38,7 +37,8 @@ export const defaultContentPageLayout: PageLayout = {
{ Component: Component.ReaderMode() }, { Component: Component.ReaderMode() },
], ],
}), }),
Component.Explorer(), Component.RecentNotes(),
// Component.Explorer(),
], ],
right: [ right: [
Component.Graph(), Component.Graph(),

View File

@ -67,7 +67,7 @@ export default {
}, },
error: { error: {
title: "Not Found", title: "Not Found",
notFound: "Either this page is private or doesn't exist.", notFound: "Somethin is wrong innit? Either this page is private or doesn't exist.",
home: "Return to Homepage", home: "Return to Homepage",
}, },
folderContent: { folderContent: {

View File

@ -67,7 +67,7 @@ export default {
}, },
error: { error: {
title: "Not Found", title: "Not Found",
notFound: "Either this page is private or doesn't exist.", notFound: "Either this page is private or doesn't exist. If you think something should be here, let me know.",
home: "Return to Homepage", home: "Return to Homepage",
}, },
folderContent: { folderContent: {