Initial commit
This commit is contained in:
commit
3f501820b1
173 changed files with 24001 additions and 0 deletions
42
quartz.layout.ts
Executable file
42
quartz.layout.ts
Executable 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()),
|
||||
],
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue