modify urls

This commit is contained in:
Rami Maalouf 2024-06-08 00:01:08 -04:00
parent 3ed0eee86b
commit 881474ac53
No known key found for this signature in database
2 changed files with 47 additions and 42 deletions

View File

@ -8,14 +8,14 @@ import * as Plugin from "./quartz/plugins";
*/
const config: QuartzConfig = {
configuration: {
pageTitle: "Welcome To Rami's Universe",
pageTitle: "Rami's Universe",
enableSPA: true,
enablePopovers: true,
analytics: {
provider: "plausible",
},
locale: "en-US",
baseUrl: "psycho-baller.github.io",
baseUrl: "notes.rami-maalouf.tech",
ignorePatterns: [
"private",
"templates",
@ -89,6 +89,7 @@ const config: QuartzConfig = {
Plugin.AliasRedirects(),
Plugin.ComponentResources(),
Plugin.ContentPage(),
Plugin.CNAME(),
Plugin.FolderPage(),
Plugin.TagPage(),
Plugin.ContentIndex({

View File

@ -1,49 +1,53 @@
import { PageLayout, SharedLayout } from "./quartz/cfg"
import * as Component from "./quartz/components"
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: [],
footer: Component.Footer({
links: {
GitHub: "https://github.com/jackyzha0/quartz",
"Discord Community": "https://discord.gg/cRFFHYye7t",
},
}),
}
head: Component.Head(),
header: [],
footer: Component.Footer({
links: {
GitHub: "https://github.com/psycho-baller/my-universe",
"Discord Community": "https://discord.gg/cRFFHYye7t",
},
}),
};
// 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.TagList(),
],
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.Explorer()),
],
right: [
Component.Graph(),
Component.DesktopOnly(Component.TableOfContents()),
Component.Backlinks(),
],
}
beforeBody: [
Component.Breadcrumbs(),
Component.ArticleTitle(),
Component.ContentMeta(),
Component.TagList(),
],
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.Explorer()),
],
right: [
Component.Graph(),
Component.DesktopOnly(Component.TableOfContents()),
Component.Backlinks(),
],
};
// components for pages that display lists of pages (e.g. tags or folders)
export const defaultListPageLayout: PageLayout = {
beforeBody: [Component.Breadcrumbs(), Component.ArticleTitle(), Component.ContentMeta()],
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.Explorer()),
],
right: [],
}
beforeBody: [
Component.Breadcrumbs(),
Component.ArticleTitle(),
Component.ContentMeta(),
],
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.Explorer()),
],
right: [],
};