From 47a1c344da0bf4ee475276c663a6fcde9cf45598 Mon Sep 17 00:00:00 2001 From: bfahrenfort Date: Fri, 22 Sep 2023 12:59:00 -0500 Subject: [PATCH] Quartz sync: Sep 22, 2023, 12:59 PM --- content/Projects/Obsidian/livesync.md | 2 +- content/index.md | 3 ++- content/sitemap.md | 12 ++++++++++++ quartz.layout.ts | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 content/sitemap.md diff --git a/content/Projects/Obsidian/livesync.md b/content/Projects/Obsidian/livesync.md index bf5a6961f..095eda221 100644 --- a/content/Projects/Obsidian/livesync.md +++ b/content/Projects/Obsidian/livesync.md @@ -12,4 +12,4 @@ Repo is [here](https://github.com/vrtmrz/obsidian-livesync) for those interested Once I had the database the guide specified up and running (simple because docker), I routed it through nginx and tried to set up the editor plugin. However, the docs fail to mention that **you have to create an empty table inside CouchDB** and point the plugin to that, so I was causing all sorts of issues and getting errors I didn't know how to fix until I tried that on a whim. Now it works perfectly and will handle my documents without issue! -I also recommend setting up a keyboard shortcut for the `Replicate Now` command in Obsidian, I use `ctrl+shift+S`. \ No newline at end of file +I also recommend setting up a keyboard shortcut for the `Replicate Now` command in Obsidian. I use `ctrl+shift+S`. \ No newline at end of file diff --git a/content/index.md b/content/index.md index 09b1bdd21..3de6d51ad 100644 --- a/content/index.md +++ b/content/index.md @@ -15,7 +15,8 @@ This site changes often. Check [[Updates]] for a monthly list of changes. I [[about-me|(me, myself)]] write about: - Projects I've undertaken and programs that I've used - The intersection of social issues and technology, often with a privacy-first spin -- Anything else that you can find in the [Explorer](https://quartz.jzhao.xyz/features/explorer) on this page +- Anything else that you can find in the [Explorer](https://quartz.jzhao.xyz/features/explorer) on your left + - If you're on mobile, visit the [[Sitemap]]. # What the hell is that spiderweb thing? That's the [Graph View](https://help.obsidian.md/Plugins/Graph+view). It's an [[Programs I Like/obsidian|Obsidian]] feature which acts as a map of what pages link to each other. Click on it for a map of the entire site and how it interconnects. It doesn't use Obsidian's implementation directly, but since the site generator I use is heavily inspired by Obsidian and [Obsidian Publish]( https://obsidian.md/publish ), it remains. diff --git a/content/sitemap.md b/content/sitemap.md new file mode 100644 index 000000000..525f691df --- /dev/null +++ b/content/sitemap.md @@ -0,0 +1,12 @@ +--- +title: Sitemap +tags: + - toc +date: 2023-09-22 +--- +Here are the homepages for each category on my site. +- [[Projects/home|Projects]] +- [[Programs I Like/home|Programs I Like]] +- [[Essays/home|Essays]] +- [[Misc/home|Miscellaneous Writings]] +- [[Updates]] \ No newline at end of file diff --git a/quartz.layout.ts b/quartz.layout.ts index 3ca7e9086..86bd99f3d 100644 --- a/quartz.layout.ts +++ b/quartz.layout.ts @@ -28,7 +28,7 @@ export const defaultContentPageLayout: PageLayout = { right: [ Component.Graph(), Component.DesktopOnly(Component.TableOfContents()), - Component.MobileOnly(Component.Explorer()), + //Component.MobileOnly(Component.Explorer()), Component.Backlinks(), ], }