proper backlink and graph display in footer
parent
672a641cec
commit
6896cb007b
@ -1,7 +1,21 @@
|
|||||||
# 💎 Quartz
|
# 🌱 Quartz
|
||||||
Simple second brain and digital garden. 🌱
|
Simple second brain and digital garden.
|
||||||
|
|
||||||
## Why Quartz?
|
## Why Quartz?
|
||||||
|
Hosting a public digital garden isn't easy. There are an overwhelming number of tutorials, resources, and guides for tools like [Notion](https://www.notion.so/), [Roam](https://roamresearch.com/), and [Obsidian](https://obsidian.md/), yet none of them have super easy to use *free* tools to publish that garden to the world.
|
||||||
|
|
||||||
|
I've personally found that
|
||||||
|
1. It's nice to access notes from anywhere
|
||||||
|
2. Having a public digital garden invites open conversations
|
||||||
|
3. It makes keeping personal notes and knowledge *playful and fun*
|
||||||
|
|
||||||
|
> “He who works with the door open gets all kinds of interruptions, but he also occasionally gets clues as to what the world is and what might be important.” — Richard Hamming
|
||||||
|
|
||||||
|
**The goal of Quartz is to make hosting your own public digital garden free and simple.**
|
||||||
|
|
||||||
## Get Started
|
## Get Started
|
||||||
[directory](moc/directory.md)
|
The entire Quartz documentation is fully hosted using Quartz! You can navigate it using the interactive Graph view below.
|
||||||
|
|
||||||
|
If you'd prefer more traditional navigation, you can also find all relevant pages through the main directory.
|
||||||
|
|
||||||
|
👉 [Directory](moc/directory.md)
|
@ -1,7 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: "Directory"
|
title: "Quartz Documentation"
|
||||||
---
|
---
|
||||||
|
|
||||||
[setup](notes/setup.md)
|
Welcome to Quartz! Whether you're setting up a website and project for the first time or a seasoned digital gardener, I hope that you'll find something useful about this project.
|
||||||
|
|
||||||
|
Let's get to business and get you started!
|
||||||
|
|
||||||
|
## Setup
|
||||||
|
📚 [setup](notes/setup.md)
|
||||||
|
|
||||||
|
## Configuration
|
||||||
[config](notes/config.md)
|
[config](notes/config.md)
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
[troubleshooting](notes/troubleshooting.md)
|
[troubleshooting](notes/troubleshooting.md)
|
@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
title: "config"
|
title: "Configuration"
|
||||||
---
|
---
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
title: "Deploying to GitHub Pages"
|
||||||
|
---
|
||||||
|
|
||||||
|
Change `baseURL` in `/config.toml`
|
||||||
|
|
||||||
|
```toml
|
||||||
|
baseURL = "https://quartz.jzhao.xyz/"
|
||||||
|
```
|
@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
title: "Obsidian Vault Integration"
|
||||||
|
---
|
@ -1,9 +1,16 @@
|
|||||||
<ol class="backlinks">
|
<h3>Backlinks</h3>
|
||||||
|
<ul class="backlinks">
|
||||||
{{$curPage := strings.TrimRight "/" .Page.RelPermalink }}
|
{{$curPage := strings.TrimRight "/" .Page.RelPermalink }}
|
||||||
{{$inbound := index $.Site.Data.linkIndex.index.backlinks $curPage}}
|
{{$inbound := index $.Site.Data.linkIndex.index.backlinks $curPage}}
|
||||||
|
{{if $inbound}}
|
||||||
{{- range $inbound -}}
|
{{- range $inbound -}}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{index . "source"}}">{{index . "source"}}</a>
|
<a href="{{index . "source"}}">{{index . "source"}}</a>
|
||||||
</li>
|
</li>
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
</ol>
|
{{else}}
|
||||||
|
<li>
|
||||||
|
No backlinks found
|
||||||
|
</li>
|
||||||
|
{{end}}
|
||||||
|
</ul>
|
Loading…
Reference in New Issue