Skip to content

Commit

Permalink
Quartz sync: Feb 7, 2024, 1:14 PM
Browse files Browse the repository at this point in the history
  • Loading branch information
Ray Song committed Feb 7, 2024
1 parent 59a0208 commit 7b10ccf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion quartz.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const config: QuartzConfig = {
Plugin.CreatedModifiedDate({
// you can add 'git' here for last modified from Git
// if you do rely on git for dates, ensure defaultDateType is 'modified'
priority: ["frontmatter", "filesystem"],
priority: ["git", "frontmatter", "filesystem"],
}),
Plugin.Latex({ renderEngine: "katex" }),
Plugin.SyntaxHighlighting(),
Expand Down
8 changes: 4 additions & 4 deletions quartz.layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ export const defaultContentPageLayout: PageLayout = {
export const defaultListPageLayout: PageLayout = {
beforeBody: [Component.Breadcrumbs(), Component.ArticleTitle(), Component.ContentMeta()],
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
// Component.PageTitle(),
// Component.MobileOnly(Component.Spacer()),
// Component.Search(),
// Component.Darkmode(),
Component.DesktopOnly(Component.Explorer()),
],
right: [],
Expand Down

0 comments on commit 7b10ccf

Please sign in to comment.