Initial commit

This commit is contained in:
kirbara 2025-12-02 09:52:11 +07:00
commit 3f501820b1
Signed by: exp
GPG key ID: D7E63AD0019E75D9
173 changed files with 24001 additions and 0 deletions

42
quartz.layout.ts Executable file
View file

@ -0,0 +1,42 @@
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: [
Component.Darkmode(),
Component.PageTitle(),
Component.Search(),
],
afterBody: [
Component.MobileOnly(Component.Separator()),
],
footer: Component.Footer(),
}
// components for pages that display a single page (e.g. a single note)
export const defaultContentPageLayout: PageLayout = {
beforeBody: [
Component.ArticleTitle(),
],
left: [
],
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.ArticleTitle(),
],
left: [
],
right: [
Component.DesktopOnly(Component.Graph()),
],
}