diff --git a/docs/showcase.md b/docs/showcase.md index 2cd56b306..ca5737b78 100644 --- a/docs/showcase.md +++ b/docs/showcase.md @@ -22,5 +22,6 @@ Want to see what Quartz can do? Here are some cool community gardens: - [Mau Camargo's Notkesto](https://notes.camargomau.com/) - [Caicai's Novels](https://imoko.cc/blog/caicai/) - [🌊 Collapsed Wave](https://collapsedwave.com/) +- [Aaron Pham's Garden](https://aarnphm.xyz/) If you want to see your own on here, submit a [Pull Request adding yourself to this file](https://github.com/jackyzha0/quartz/blob/v4/docs/showcase.md)! diff --git a/quartz.config.ts b/quartz.config.ts index 52e4386cc..d37c71a0d 100644 --- a/quartz.config.ts +++ b/quartz.config.ts @@ -47,7 +47,9 @@ const config: QuartzConfig = { Plugin.FrontMatter(), Plugin.TableOfContents(), Plugin.CreatedModifiedDate({ - priority: ["frontmatter", "filesystem"], // you can add 'git' here for last modified from Git but this makes the build slower + // 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"], }), Plugin.Latex({ renderEngine: "katex" }), Plugin.SyntaxHighlighting(),