quartz/quartz.layout.ts
2025-03-15 07:01:04 +08:00

60 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: [],
afterBody: [],
footer: Component.Footer({ 
links: {
RSS: "https://enneaaa.netlify.app/feed.xml",   
"Scroll to top ↑": "#", 
},
}),
}
// components for pages that display a single page (e.g. a single note)  
export const defaultContentPageLayout: PageLayout = {   
beforeBody: [
Component.ArticleTitle(),   
Component.ContentMeta(),  
Component.TagList(), 
],
left: [
Component.PageTitle(),  
Component.MobileOnly(Component.Spacer()),  
Component.Flex({ 
components: [ 
{
Component: Component.Search(), 
grow: true, 
},
{ Component: Component.Darkmode() }, 
],
}),
Component.DesktopOnly(Component.RecentNotes({ limit: 15, showTags: false, linkToMore: "recent" })),
// Component.Explorer(),     
],
right: [
Component.DesktopOnly(Component.TableOfContents()),     
Component.Backlinks(),     
Component.Graph(),       
], 
afterBody: [],
}
// components for pages that display lists of pages (e.g. tags or folders)
export const defaultListPageLayout: PageLayout = {    
beforeBody: [Component.ArticleTitle(), Component.ContentMeta()], 
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),    
Component.Search(),  
Component.Darkmode(),  
Component.DesktopOnly(Component.RecentNotes({ limit: 3, showTags: false,linkToMore: "recent" })),
// Component.Explorer(),    
],
right: [],
}