\ No newline at end of file
diff --git a/notes/images/github-actions.png b/assets/images/github-actions.png
similarity index 100%
rename from notes/images/github-actions.png
rename to assets/images/github-actions.png
diff --git a/notes/images/github-pages.png b/assets/images/github-pages.png
similarity index 100%
rename from notes/images/github-pages.png
rename to assets/images/github-pages.png
diff --git a/notes/images/google-domains.png b/assets/images/google-domains.png
similarity index 100%
rename from notes/images/google-domains.png
rename to assets/images/google-domains.png
diff --git a/notes/images/obsidian-settings.png b/assets/images/obsidian-settings.png
similarity index 100%
rename from notes/images/obsidian-settings.png
rename to assets/images/obsidian-settings.png
diff --git a/categories/index.html b/categories/index.html
index 22b9ddecb..8b9dcec69 100644
--- a/categories/index.html
+++ b/categories/index.html
@@ -1,4 +1,4 @@
-Categories
This step is only applicable if you are using a custom domain! If you are using a <YOUR-USERNAME>.github.io domain, you can skip this step.
For this last bit to take effect, you also need to create a CNAME record with the DNS provider you register your domain with (i.e. NameCheap, Google Domains).
Go to your forked repository (github.com/<YOUR-GITHUB-USERNAME>/quartz) settings page and go to the Pages tab. Under “Custom domain”, type your custom domain, then click Save.
Go to your DNS Provider and create a CNAME record that points from your domain to <YOUR-GITHUB-USERNAME.github.io. (yes, with the trailing period).
Example Configuration for Quartz
Wait 30 minutes to an hour for the network changes to kick in.
Done!
Interactive Graph
\ No newline at end of file
diff --git a/index.html b/index.html
index 998400930..6ff17e4cc 100644
--- a/index.html
+++ b/index.html
@@ -1,4 +1,4 @@
-Harshit's Notes
Quartz is designed to be extremely configurable. You can find the bulk of the configuration scattered throughout the repository depending on how in-depth you’d like to get.
The majority of configuration can be be found under data/config.yaml. An annotated example configuration is shown below.
name:Harshit# Shows in the footer
-enableToc:true# Whether to show a Table of Contents
-enableLinkPreview:true# whether to render card previews for links
-description:My garden of notes!
-page_title:Harshit Notes Garden# Default Page Title
-
-links:# Links to show in footer
-- link_name:Twitter
-link:https://twitter.com/harshitconnects
-- link_name:Linkedin
-link:https://www.linkedin.com/in/harshitconnects/
-- link_name:Mail
-link:mailto:contactingharshit@gmail.com
-
Graph View
To customize the Interactive Graph view, you can poke around data/graphConfig.yaml.
1
-2
-3
-4
-5
-6
-
enableLegend:false# automatically generate a legend
-enableDrag:true# allow dragging nodes in the graph
-enableZoom:true# allow zooming and panning the graph
-depth:-1# how many neighbours of the current node to show (-1 is all nodes)
-paths:# colour specific nodes path off of their path
-- /moc:"#4388cc"
-
Styling
Want to go even more in-depth? You can add custom CSS styling and change existing colours through editing assets/custom.scss. If you’d like to target specific parts of the site, you can add ids and classes to the HTML partials in /layouts/partials.
Partials
Partials are what dictate what actually gets rendered to the page. Want to change how pages are styled and structured? You can edit the appropriate layout in /layouts.
For example, the structure of the home page can be edited through /layouts/index.html. To customize the footer, you can edit /layouts/partials/footer.html