jekyll-bonsai 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +674 -0
- data/README.md +11 -0
- data/_config.yml +155 -0
- data/_entries/digital-garden.bonsai.md +36 -0
- data/_entries/digital-garden.field-logs.md +10 -0
- data/_entries/digital-garden.fork.md +10 -0
- data/_entries/digital-garden.md +17 -0
- data/_entries/digital-garden.path.md +11 -0
- data/_entries/digital-garden.plants.md +12 -0
- data/_entries/digital-garden.pollinate.md +10 -0
- data/_entries/digital-garden.steps.md +10 -0
- data/_entries/digital-garden.stream.md +12 -0
- data/_entries/digital-garden.sweep.md +12 -0
- data/_entries/digital-garden.weather.md +12 -0
- data/_entries/features.md +10 -0
- data/_entries/features.notes.hover-preview.md +10 -0
- data/_entries/features.notes.md +12 -0
- data/_entries/features.notes.note-body.md +12 -0
- data/_entries/features.notes.note-body.share.md +10 -0
- data/_entries/features.notes.note-body.sidenotes.md +52 -0
- data/_entries/features.notes.note-foot.links.md +10 -0
- data/_entries/features.notes.note-foot.md +11 -0
- data/_entries/features.notes.note-foot.posts.md +10 -0
- data/_entries/features.notes.note-foot.webmentions.md +10 -0
- data/_entries/features.notes.note-head.md +10 -0
- data/_entries/features.pages.field-blogs.md +10 -0
- data/_entries/features.pages.md +12 -0
- data/_entries/features.pages.recent.md +10 -0
- data/_entries/features.pages.status-tags.md +10 -0
- data/_entries/features.site-nav.graph.links.md +10 -0
- data/_entries/features.site-nav.graph.links.namespacing.md +14 -0
- data/_entries/features.site-nav.graph.links.wikilinks.md +25 -0
- data/_entries/features.site-nav.graph.md +12 -0
- data/_entries/features.site-nav.graph.nodes.current-note.md +10 -0
- data/_entries/features.site-nav.graph.nodes.md +12 -0
- data/_entries/features.site-nav.graph.nodes.mia.missing-note.md +20 -0
- data/_entries/features.site-nav.graph.nodes.visited-status.md +10 -0
- data/_entries/features.site-nav.graph.toggle-graph.md +13 -0
- data/_entries/features.site-nav.graph.type.md +16 -0
- data/_entries/features.site-nav.graph.type.net-web.md +10 -0
- data/_entries/features.site-nav.graph.type.tree.md +12 -0
- data/_entries/features.site-nav.md +10 -0
- data/_entries/features.site-nav.visited.md +14 -0
- data/_entries/features.tags.md +13 -0
- data/_entries/features.themes.dark.md +12 -0
- data/_entries/features.themes.light.md +10 -0
- data/_entries/features.themes.md +12 -0
- data/_entries/features.visited.delete-data.md +10 -0
- data/_entries/features.visited.md +12 -0
- data/_entries/features.visitor-preferences.md +27 -0
- data/_entries/feedback.md +10 -0
- data/_entries/people.creator.md +12 -0
- data/_entries/people.md +13 -0
- data/_entries/people.visitors.md +12 -0
- data/_entries/plugins.jekyll-wikilinks.md +10 -0
- data/_entries/plugins.md +10 -0
- data/_entries/root.md +26 -0
- data/_includes/anchor-headings.html +152 -0
- data/_includes/connect.html +44 -0
- data/_includes/entry-attrs.html +27 -0
- data/_includes/head.html +23 -0
- data/_includes/hover-preview.html +84 -0
- data/_includes/img/bullet-ancestor.svg +5 -0
- data/_includes/img/bullet-net-web.svg +9 -0
- data/_includes/img/bullet-tree.svg +9 -0
- data/_includes/metrics.html +10 -0
- data/_includes/share.html +45 -0
- data/_includes/site-nav.html +48 -0
- data/_includes/styles.scss.liquid +3 -0
- data/_layouts/default.html +39 -0
- data/_layouts/entry.html +124 -0
- data/_layouts/post.html +29 -0
- data/_layouts/state.html +59 -0
- data/_layouts/table-wrappers.html +7 -0
- data/_layouts/vendor/compress.html +10 -0
- data/_pages/about.md +7 -0
- data/_pages/posts.html +19 -0
- data/_pages/recent.html +48 -0
- data/_plugins/doc_filters.rb +44 -0
- data/_plugins/prep_entry.rb +43 -0
- data/_plugins/sidenote.rb +123 -0
- data/_plugins/tags.rb +52 -0
- data/_sass/base/_layout.scss +54 -0
- data/_sass/base/_main.scss +203 -0
- data/_sass/base/_typography.scss +75 -0
- data/_sass/base/base.scss +3 -0
- data/_sass/color/dark.scss +58 -0
- data/_sass/color/light.scss +58 -0
- data/_sass/includes/_btn.scss +106 -0
- data/_sass/includes/_graph.scss +69 -0
- data/_sass/includes/_nav.scss +89 -0
- data/_sass/includes/_site_nav.scss +221 -0
- data/_sass/includes/_tooltip.scss +29 -0
- data/_sass/includes/includes.scss +9 -0
- data/_sass/markdown/_code.scss +340 -0
- data/_sass/markdown/_content.scss +400 -0
- data/_sass/markdown/_tables.scss +60 -0
- data/_sass/markdown/markdown.scss +7 -0
- data/_sass/modules.scss +14 -0
- data/_sass/pages/_index.scss +72 -0
- data/_sass/pages/_posts.scss +17 -0
- data/_sass/pages/_recent.scss +26 -0
- data/_sass/pages/_state.scss +72 -0
- data/_sass/pages/pages.scss +4 -0
- data/_sass/support/_functions.scss +9 -0
- data/_sass/support/_variables.scss +179 -0
- data/_sass/support/mixins/_buttons.scss +27 -0
- data/_sass/support/mixins/_layout.scss +56 -0
- data/_sass/support/mixins/_typography.scss +84 -0
- data/_sass/support/mixins/mixins.scss +3 -0
- data/_sass/support/support.scss +3 -0
- data/_sass/vendor/normalize.scss/README.md +7 -0
- data/_sass/vendor/normalize.scss/normalize.scss +349 -0
- data/_states/bamboo.md +8 -0
- data/_states/berry.md +8 -0
- data/_states/bloom.md +8 -0
- data/_states/bud.md +6 -0
- data/_states/fruit.md +8 -0
- data/_states/melon.md +8 -0
- data/_states/pot-bamboo.md +8 -0
- data/_states/seed.md +8 -0
- data/_states/sprout.md +8 -0
- data/_states/tags.md +8 -0
- data/_states/tea.md +8 -0
- data/assets/css/styles-dark.scss +3 -0
- data/assets/css/styles-light.scss +3 -0
- data/assets/css/styles.scss +8 -0
- data/assets/font/Cutive_Mono/CutiveMono-Regular.ttf +0 -0
- data/assets/font/Cutive_Mono/OFL.txt +93 -0
- data/assets/font/Old_Standard_TT/OFL.txt +93 -0
- data/assets/font/Old_Standard_TT/OldStandardTT-Bold.ttf +0 -0
- data/assets/font/Old_Standard_TT/OldStandardTT-Italic.ttf +0 -0
- data/assets/font/Old_Standard_TT/OldStandardTT-Regular.ttf +0 -0
- data/assets/font/exo2/Exo2-Italic-VariableFont_wght.ttf +0 -0
- data/assets/font/exo2/Exo2-VariableFont_wght.ttf +0 -0
- data/assets/font/exo2/OFL.txt +93 -0
- data/assets/font/exo2/README.txt +81 -0
- data/assets/font/exo2/static/Exo2-Black.ttf +0 -0
- data/assets/font/exo2/static/Exo2-BlackItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Bold.ttf +0 -0
- data/assets/font/exo2/static/Exo2-BoldItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ExtraBold.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ExtraBoldItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ExtraLight.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ExtraLightItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Italic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Light.ttf +0 -0
- data/assets/font/exo2/static/Exo2-LightItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Medium.ttf +0 -0
- data/assets/font/exo2/static/Exo2-MediumItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Regular.ttf +0 -0
- data/assets/font/exo2/static/Exo2-SemiBold.ttf +0 -0
- data/assets/font/exo2/static/Exo2-SemiBoldItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Thin.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ThinItalic.ttf +0 -0
- data/assets/img/bonsai-dark.png +0 -0
- data/assets/img/bonsai-dark.svg +106 -0
- data/assets/img/bonsai-light.png +0 -0
- data/assets/img/bonsai-light.svg +81 -0
- data/assets/img/favicon-dark.png +0 -0
- data/assets/img/favicon-light.png +0 -0
- data/assets/img/nav-base-dark.svg +1 -0
- data/assets/img/nav-base-light.svg +1 -0
- data/assets/img/nav-bonsai-dark.svg +1 -0
- data/assets/img/nav-bonsai-light.svg +1 -0
- data/assets/img/nav-dot-dark.svg +1 -0
- data/assets/img/nav-dot-light.svg +1 -0
- data/assets/img/nav-wiki-links-dark.svg +1 -0
- data/assets/img/nav-wiki-links-light.svg +1 -0
- data/assets/js/entry.js +102 -0
- data/assets/js/graph.js +552 -0
- data/assets/js/scripts.js +80 -0
- data/assets/js/site-nav.js +132 -0
- data/assets/js/theme-colors.js +71 -0
- data/index.html +82 -0
- metadata +360 -0
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
id: 46833ef41c
|
3
|
+
title: Links
|
4
|
+
desc: ''
|
5
|
+
updated: 1622911860965
|
6
|
+
created: 1622901451907
|
7
|
+
---
|
8
|
+
|
9
|
+
๐ The note's foot provides a [[digital-garden.fork]] in which [[people.visitors]] can decide where to go next: To a backlink to the current note from the [[features.site-nav.graph.type.net-web]] or to a child note in the [[features.site-nav.graph.type.tree]].
|
10
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
---
|
2
|
+
id: 7f205b379d
|
3
|
+
title: Note Foot
|
4
|
+
desc: ''
|
5
|
+
updated: 1622910844080
|
6
|
+
created: 1620411728364
|
7
|
+
tags: "\U0001F33F"
|
8
|
+
---
|
9
|
+
|
10
|
+
The foot of the note provides navigation to other places depending on how they are connected to the [[features.site-nav.graph.nodes.current-note]]. See children for types.
|
11
|
+
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
id: e02098892c
|
3
|
+
title: Posts
|
4
|
+
desc: ''
|
5
|
+
updated: 1622911886604
|
6
|
+
created: 1622901460607
|
7
|
+
tags: ๐ฟ
|
8
|
+
---
|
9
|
+
|
10
|
+
๐ The note's foot displays which [[digital-garden.field-logs]] might be of interest to [[people.visitors]] in relation to the curren note.
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
id: 000f6a1684
|
3
|
+
title: Webmentions
|
4
|
+
desc: ''
|
5
|
+
updated: 1622903220780
|
6
|
+
created: 1622901441606
|
7
|
+
tags: ๐ฟ
|
8
|
+
---
|
9
|
+
|
10
|
+
[Webmentions](https://indieweb.org/Webmention) are a different way of socializing with others on the internet. Instead of entering into a platform and possibly getting swept up in its [[digital-garden.stream]], interactions revolve around your own site. Accounts can be created [here](https://webmention.io/).
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
id: ab5e276e20
|
3
|
+
title: Note Head
|
4
|
+
desc: ''
|
5
|
+
updated: 1622901554205
|
6
|
+
created: 1620432252168
|
7
|
+
tags: "\U0001F33F"
|
8
|
+
---
|
9
|
+
๐ค The [breadcrumb](https://en.wikipedia.org/wiki/Breadcrumb_navigation) [[digital-garden.path]] at the top of each note displays all ancestors of the [[features.site-nav.graph.nodes.current-note]], as defined by the note's [[features.site-nav.graph.links.namespacing]].
|
10
|
+
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
id: 90c11509bd
|
3
|
+
title: Pages
|
4
|
+
desc: ''
|
5
|
+
updated: 1623852248648
|
6
|
+
created: 1620432816387
|
7
|
+
tags: ๐ฟ
|
8
|
+
---
|
9
|
+
|
10
|
+
[[root]] has some special jekyll pages which can be navigated to by hovering over the ๐บ in the sidebar.
|
11
|
+
|
12
|
+
See child notes for available pages.
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
id: f697271be7
|
3
|
+
title: Status Tags
|
4
|
+
desc: ''
|
5
|
+
updated: 1623851477995
|
6
|
+
created: 1620432015966
|
7
|
+
tags: "\U0001F33F"
|
8
|
+
---
|
9
|
+
๐ The [[digital-garden.plants|plant]] page defines highlighted [[features.tags]]s and displays all notes that have that tag.
|
10
|
+
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
id: fa6aa0c597
|
3
|
+
title: Namespacing
|
4
|
+
desc: ''
|
5
|
+
updated: 1622910329431
|
6
|
+
created: 1620433438038
|
7
|
+
tags: "\U0001F38B"
|
8
|
+
---
|
9
|
+
Namespaces are defined by '.' delimeters in [[features.notes]]' filenames. For example, the breadcrumb [[features.notes.note-head]] above is formed by the current note's filename, which is `features.site-nav.graph.links.namespacing.md`.
|
10
|
+
|
11
|
+
## Notable
|
12
|
+
|
13
|
+
- These namespaces are what are used to build the template's [[features.site-nav.graph.type.tree]]s.
|
14
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
---
|
2
|
+
id: d1634ef36a
|
3
|
+
title: Wikilinks
|
4
|
+
desc: ''
|
5
|
+
updated: 1623851278498
|
6
|
+
created: 1620408415248
|
7
|
+
tags: "\U0001F38B"
|
8
|
+
---
|
9
|
+
|
10
|
+
\[\[Wikilinks]][>names] are are crucial part of the world of [[digital-garden|digital gardening]]. They are the basic building block of the interlinking accomplished in many gardens, including this one.
|
11
|
+
|
12
|
+
## Notable
|
13
|
+
|
14
|
+
- Wikilinks are green[>blue] and may be [[features.notes.hover-preview|previewed on hover]].
|
15
|
+
- This type of linking is what defines the links in the [[features.site-nav.graph.type.net-web]] graph type.
|
16
|
+
- \[\[Wikilinks]] are rendered by the [[plugins.jekyll-wikilinks]] plugin.
|
17
|
+
|
18
|
+
## Proposal
|
19
|
+
|
20
|
+
- Would [jekyll](https://talk.jekyllrb.com/t/introducing-jekyll-wikilinks/6013) or kramdown be interested in integrating this plugin?
|
21
|
+
|
22
|
+
[>names]: "wikilink" actually goes by many names: "[bidirectional link](https://www.roamtips.com/home/what-are-bi-directional-links-and-tags-in-roam-research#:~:text=Bi%2Ddirectional%20links%20are%20created,K%20(Ctrl%2DK).)", "[wikitext linking](https://tiddlywiki.com/#Linking%20in%20WikiText)", "[internal link](https://help.obsidian.md/How+to/Internal+link)", "[humble double bracket internal link](https://web.archive.org/web/20200128113356/http://takingnotenow.blogspot.com/2018/12/it-needs-wiki-like-superpower.html)", to name only a few...
|
23
|
+
|
24
|
+
[>blue]: As opposed to blue external links.
|
25
|
+
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
id: 5f44796eaf
|
3
|
+
title: Graph
|
4
|
+
desc: ''
|
5
|
+
updated: 1624909105230
|
6
|
+
created: 1620408781620
|
7
|
+
tags: "\U0001F38B"
|
8
|
+
notable: true
|
9
|
+
---
|
10
|
+
The graph in the sidebar is the main site navigation for this template. Just click on a node and you'll be taken to it's corresponding [[features.notes|note]]. If you hover over the node, it's title will display as a tooltip. You can also click the ๐ณ or ๐ธ to toggle the graph's [[features.site-nav.graph.type]].
|
11
|
+
|
12
|
+
You could think of the graph as a [[digital-garden.bonsai]] growing in the sidebar tray.
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
id: c775ce9eda
|
3
|
+
title: Missing Note
|
4
|
+
desc: ''
|
5
|
+
updated: 1623851513018
|
6
|
+
created: 1620537158307
|
7
|
+
tags: "\U0001F331"
|
8
|
+
---
|
9
|
+
The [[features.site-nav.graph]] and [[features.notes|note-local]] navigation will properly handle missing links and notes:
|
10
|
+
|
11
|
+
Both graph types will display empty nodes with a "Missing Note" tooltip.
|
12
|
+
|
13
|
+
In the [[features.site-nav.graph.type.tree]], a missing note is when there are namespaces in filenames that don't have a corresponding note -- like the parent for this note which is called "mia"[>eg1]. As a result, the [[features.notes.note-head]] and [[features.notes.note-foot]] will print greyed out namespace text instead of clickable links.
|
14
|
+
|
15
|
+
In the [[features.site-nav.graph.type.net-web]], a missing note is when there is wikilinked text with no corresponding note. The text and wiklinks will print [[like-this]][>eg2].
|
16
|
+
|
17
|
+
[>eg1]: e.g. This note's title is `features.site-nav.graph.mia.missing-note.md` and there is no `features.site-nav.graph.mia.md` note.
|
18
|
+
|
19
|
+
[>eg2]: e.g. There is no note titled `like-this.md`.
|
20
|
+
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
id: 9a6388a5ad
|
3
|
+
title: Visited Status
|
4
|
+
desc: ''
|
5
|
+
updated: 1622906650897
|
6
|
+
created: 1622846586058
|
7
|
+
tags: "\U0001F331"
|
8
|
+
---
|
9
|
+
|
10
|
+
If you look at the graph in the sidebar, you'll notice that the [[features.notes]] visited status is represented in the graph via the node's coloration: If the node has been [[features.visited]], they perk up and are colored more brightly.
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
id: adb1d2311c
|
3
|
+
title: Toggle Graph
|
4
|
+
desc: ''
|
5
|
+
updated: 1626449405277
|
6
|
+
created: 1620506243806
|
7
|
+
tags: "\U0001F331"
|
8
|
+
---
|
9
|
+
|
10
|
+
In the bottom right there are dotted wikilinks \[\[.]] which allow [[people.visitors]] to open and close the the graph.
|
11
|
+
|
12
|
+
This currently only works on small screens.
|
13
|
+
|
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
id: ed5f29be6b
|
3
|
+
title: Type
|
4
|
+
desc: ''
|
5
|
+
updated: 1623851369547
|
6
|
+
created: 1620587309685
|
7
|
+
tags: "\U0001F33F"
|
8
|
+
---
|
9
|
+
As [[features.site-nav.graph.links.wikilinks]], networked note-taking apps, and graphs flower in popularity, a debate has also sparked between networks vs hierarchies.
|
10
|
+
|
11
|
+
This template leverages both [[features.site-nav.graph.type.tree]]s (hierarchies) and [[features.site-nav.graph.type.net-web]]s (networks) so you and your [[people.visitors]] may toggle the perspective and decide for yourselves what works well[>data-structure].
|
12
|
+
|
13
|
+
[>data-structure]: Of course, the final experience will depend both on the graphs' inherent natures _and_ how the notes themselves are structured...[^sidenotes]
|
14
|
+
|
15
|
+
[^sidenotes]: Like the [[features.notes.note-body.sidenotes]]?
|
16
|
+
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
id: 92a714c807
|
3
|
+
title: Tree
|
4
|
+
desc: ''
|
5
|
+
updated: 1620413062589
|
6
|
+
created: 1620413062589
|
7
|
+
tags: "\U0001F33F"
|
8
|
+
---
|
9
|
+
๐ณ The tree graph[^ha] is built from [[features.site-nav.graph.links.namespacing]] from each note.
|
10
|
+
|
11
|
+
[^ha]: You could almost think of the tree graph as a glorified site-wide [table of contents](https://en.wikipedia.org/wiki/Table_of_contents) visualization.
|
12
|
+
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
id: ff16b3ead0
|
3
|
+
title: Visited
|
4
|
+
desc: ''
|
5
|
+
updated: 1624902551140
|
6
|
+
created: 1622910363375
|
7
|
+
tags: ๐ฟ
|
8
|
+
---
|
9
|
+
|
10
|
+
๐ฅพ As notes are [[features.visited]], each one is added to the visited tab list, which makes it easy to re-visit previously seen notes. The resulting tab-links are organized via the [Noguchi Filing System](https://lifehacker.com/the-noguchi-filing-system-keeps-paper-documents-organiz-1593529432): Tabs are ordered from most recent to least recently visited; top to bottom. Re-visited notes are moved to the top and removed from further down the stack.
|
11
|
+
|
12
|
+
This captures some of the functionality of the sliding behavior from [Andy's Notes](https://notes.andymatuschak.org/About_these_notes)[>click], which help orients visitors within the [[digital-garden]].
|
13
|
+
|
14
|
+
[>click]: Just click around in his notes to experience the slide.
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
id: c57513dc49
|
3
|
+
title: Tags
|
4
|
+
desc: ''
|
5
|
+
updated: 1622903483325
|
6
|
+
created: 1620491278829
|
7
|
+
tags: "\U0001F33F"
|
8
|
+
---
|
9
|
+
Tags in this template are used to represents the status of a
|
10
|
+
[note's maturity](https://notes.andymatuschak.org/Taxonomy_of_note_types) and perhaps its
|
11
|
+
[epistemic status](https://www.gwern.net/About#confidence-tags), which are represented as [[digital-garden.plants]]. A survey of tags may be viewed on the [[features.pages.status-tags]] page.
|
12
|
+
|
13
|
+
Because tagging on the internet is not typically used in this fashion, this might change. But it's worth noting that this is a philosophy of tagging that has sprung up in the networked note taking world, which is [already colliding](https://forum.obsidian.md/t/allow-links-in-yaml-front-matter-notion-like-databases-from-metadata-links-as-first-class-citizens/10052) with how tags are used on the internet.
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
id: 1c768c6171
|
3
|
+
title: Dark
|
4
|
+
desc: ''
|
5
|
+
updated: 1623851374116
|
6
|
+
created: 1620503325237
|
7
|
+
tags: "\U0001F331"
|
8
|
+
---
|
9
|
+
๐ A [tron](https://www.google.com/search?q=tron+style&tbm=isch&ved=2ahUKEwiNlMq77brwAhVRRlMKHZ5_DYcQ2-cCegQIABAA&oq=tron+style&gs_lcp=CgNpbWcQAzICCAAyAggAMgIIADICCAAyAggAMgIIADICCAAyAggAMgIIADICCAA6BwgAELEDEEM6BAgAEENQsL1rWJbKa2Cjy2toAHAAeACAAasBiAH9BJIBAzQuMpgBAKABAaoBC2d3cy13aXotaW1nwAEB&sclient=img&ei=ReuWYM3dE9GMzQKe_7W4CA&bih=1005&biw=1920)-inspired[>graph] dark theme.
|
10
|
+
|
11
|
+
[>graph]: Which mostly manifests as the iconic lines'n'dots in the [[features.site-nav.graph]] and drop-shadows on clickable emojis.
|
12
|
+
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
id: 00eefd30a7
|
3
|
+
title: Themes
|
4
|
+
desc: ''
|
5
|
+
updated: 1620489733031
|
6
|
+
created: 1620489733031
|
7
|
+
tags: ๐ฟ
|
8
|
+
---
|
9
|
+
|
10
|
+
This template is capable of providing multiple themes. Just click the โ๏ธ or ๐ to toggle between them.
|
11
|
+
|
12
|
+
Two are currently supported. See child notes.
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
id: 145b8a5940
|
3
|
+
title: Delete Data
|
4
|
+
desc: ''
|
5
|
+
updated: 1622911728743
|
6
|
+
created: 1622910819153
|
7
|
+
tags: ๐ฑ
|
8
|
+
---
|
9
|
+
|
10
|
+
๐งน Like [[digital-garden.sweep]]ing away their [[digital-garden.steps]], [[people.visitors]] can delete all visited data by clicking the broom in the bottom of the sidebar. This will reset the [[features.site-nav.visited]] site-nav and nodes' [[features.site-nav.graph.nodes.visited-status]] in the graph.
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
id: cc737622cb
|
3
|
+
title: Visited
|
4
|
+
desc: ''
|
5
|
+
updated: 1624902551630
|
6
|
+
created: 1622905430066
|
7
|
+
tags: ๐ฟ
|
8
|
+
---
|
9
|
+
|
10
|
+
As [[people.visitors]] step through the site, previously visited pages are saved[>no-worries]. Those notes are then visible in the [[features.site-nav.graph.nodes.visited-status|graph]] and [[features.site-nav.visited]] site-nav for the visitor's convenience.
|
11
|
+
|
12
|
+
[>no-worries]: No data is collected or sent anywhere else. Visited notes are only saved locally to the visitor's browser.
|
@@ -0,0 +1,27 @@
|
|
1
|
+
---
|
2
|
+
id: 7671f67d92
|
3
|
+
title: Visitor Preferences
|
4
|
+
desc: ''
|
5
|
+
updated: 1623851544976
|
6
|
+
created: 1620414554904
|
7
|
+
tags: "\U0001F33F"
|
8
|
+
---
|
9
|
+
Some navigational and display preferences are saved in the [[people.visitors]]' browser to keep the experience consistent across pages[>no-worries]:
|
10
|
+
|
11
|
+
- Toggle [[features.themes]] colors:
|
12
|
+
- ๐ [[features.themes.dark]]
|
13
|
+
- โ๏ธ [[features.themes.light]]
|
14
|
+
- Toggle [[features.site-nav.graph]] type:
|
15
|
+
- ๐ณ [[features.site-nav.graph.type.tree]]
|
16
|
+
- ๐ธ [[features.site-nav.graph.type.net-web]]
|
17
|
+
- Hide/Show [[features.notes|note]]-local navigation:
|
18
|
+
- The [[features.notes.note-head]]'s:
|
19
|
+
- ๐ค [[features.notes.note-head]]
|
20
|
+
- Hide/Show the [[features.notes.note-foot]]'s:
|
21
|
+
- ๐ [[features.notes.note-foot.links]]
|
22
|
+
- ๐ [[features.notes.note-foot.posts]]
|
23
|
+
- ๐ [[features.notes.note-foot.webmentions]]
|
24
|
+
- Delete [[features.visited]] data:
|
25
|
+
- ๐งน [[features.visited.delete-data]]
|
26
|
+
|
27
|
+
[>no-worries]: No data is collected or sent anywhere else. All data are only saved locally to the visitors' browser.
|