jekyll-bonsai 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (177) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +674 -0
  3. data/README.md +11 -0
  4. data/_config.yml +155 -0
  5. data/_entries/digital-garden.bonsai.md +36 -0
  6. data/_entries/digital-garden.field-logs.md +10 -0
  7. data/_entries/digital-garden.fork.md +10 -0
  8. data/_entries/digital-garden.md +17 -0
  9. data/_entries/digital-garden.path.md +11 -0
  10. data/_entries/digital-garden.plants.md +12 -0
  11. data/_entries/digital-garden.pollinate.md +10 -0
  12. data/_entries/digital-garden.steps.md +10 -0
  13. data/_entries/digital-garden.stream.md +12 -0
  14. data/_entries/digital-garden.sweep.md +12 -0
  15. data/_entries/digital-garden.weather.md +12 -0
  16. data/_entries/features.md +10 -0
  17. data/_entries/features.notes.hover-preview.md +10 -0
  18. data/_entries/features.notes.md +12 -0
  19. data/_entries/features.notes.note-body.md +12 -0
  20. data/_entries/features.notes.note-body.share.md +10 -0
  21. data/_entries/features.notes.note-body.sidenotes.md +52 -0
  22. data/_entries/features.notes.note-foot.links.md +10 -0
  23. data/_entries/features.notes.note-foot.md +11 -0
  24. data/_entries/features.notes.note-foot.posts.md +10 -0
  25. data/_entries/features.notes.note-foot.webmentions.md +10 -0
  26. data/_entries/features.notes.note-head.md +10 -0
  27. data/_entries/features.pages.field-blogs.md +10 -0
  28. data/_entries/features.pages.md +12 -0
  29. data/_entries/features.pages.recent.md +10 -0
  30. data/_entries/features.pages.status-tags.md +10 -0
  31. data/_entries/features.site-nav.graph.links.md +10 -0
  32. data/_entries/features.site-nav.graph.links.namespacing.md +14 -0
  33. data/_entries/features.site-nav.graph.links.wikilinks.md +25 -0
  34. data/_entries/features.site-nav.graph.md +12 -0
  35. data/_entries/features.site-nav.graph.nodes.current-note.md +10 -0
  36. data/_entries/features.site-nav.graph.nodes.md +12 -0
  37. data/_entries/features.site-nav.graph.nodes.mia.missing-note.md +20 -0
  38. data/_entries/features.site-nav.graph.nodes.visited-status.md +10 -0
  39. data/_entries/features.site-nav.graph.toggle-graph.md +13 -0
  40. data/_entries/features.site-nav.graph.type.md +16 -0
  41. data/_entries/features.site-nav.graph.type.net-web.md +10 -0
  42. data/_entries/features.site-nav.graph.type.tree.md +12 -0
  43. data/_entries/features.site-nav.md +10 -0
  44. data/_entries/features.site-nav.visited.md +14 -0
  45. data/_entries/features.tags.md +13 -0
  46. data/_entries/features.themes.dark.md +12 -0
  47. data/_entries/features.themes.light.md +10 -0
  48. data/_entries/features.themes.md +12 -0
  49. data/_entries/features.visited.delete-data.md +10 -0
  50. data/_entries/features.visited.md +12 -0
  51. data/_entries/features.visitor-preferences.md +27 -0
  52. data/_entries/feedback.md +10 -0
  53. data/_entries/people.creator.md +12 -0
  54. data/_entries/people.md +13 -0
  55. data/_entries/people.visitors.md +12 -0
  56. data/_entries/plugins.jekyll-wikilinks.md +10 -0
  57. data/_entries/plugins.md +10 -0
  58. data/_entries/root.md +26 -0
  59. data/_includes/anchor-headings.html +152 -0
  60. data/_includes/connect.html +44 -0
  61. data/_includes/entry-attrs.html +27 -0
  62. data/_includes/head.html +23 -0
  63. data/_includes/hover-preview.html +84 -0
  64. data/_includes/img/bullet-ancestor.svg +5 -0
  65. data/_includes/img/bullet-net-web.svg +9 -0
  66. data/_includes/img/bullet-tree.svg +9 -0
  67. data/_includes/metrics.html +10 -0
  68. data/_includes/share.html +45 -0
  69. data/_includes/site-nav.html +48 -0
  70. data/_includes/styles.scss.liquid +3 -0
  71. data/_layouts/default.html +39 -0
  72. data/_layouts/entry.html +124 -0
  73. data/_layouts/post.html +29 -0
  74. data/_layouts/state.html +59 -0
  75. data/_layouts/table-wrappers.html +7 -0
  76. data/_layouts/vendor/compress.html +10 -0
  77. data/_pages/about.md +7 -0
  78. data/_pages/posts.html +19 -0
  79. data/_pages/recent.html +48 -0
  80. data/_plugins/doc_filters.rb +44 -0
  81. data/_plugins/prep_entry.rb +43 -0
  82. data/_plugins/sidenote.rb +123 -0
  83. data/_plugins/tags.rb +52 -0
  84. data/_sass/base/_layout.scss +54 -0
  85. data/_sass/base/_main.scss +203 -0
  86. data/_sass/base/_typography.scss +75 -0
  87. data/_sass/base/base.scss +3 -0
  88. data/_sass/color/dark.scss +58 -0
  89. data/_sass/color/light.scss +58 -0
  90. data/_sass/includes/_btn.scss +106 -0
  91. data/_sass/includes/_graph.scss +69 -0
  92. data/_sass/includes/_nav.scss +89 -0
  93. data/_sass/includes/_site_nav.scss +221 -0
  94. data/_sass/includes/_tooltip.scss +29 -0
  95. data/_sass/includes/includes.scss +9 -0
  96. data/_sass/markdown/_code.scss +340 -0
  97. data/_sass/markdown/_content.scss +400 -0
  98. data/_sass/markdown/_tables.scss +60 -0
  99. data/_sass/markdown/markdown.scss +7 -0
  100. data/_sass/modules.scss +14 -0
  101. data/_sass/pages/_index.scss +72 -0
  102. data/_sass/pages/_posts.scss +17 -0
  103. data/_sass/pages/_recent.scss +26 -0
  104. data/_sass/pages/_state.scss +72 -0
  105. data/_sass/pages/pages.scss +4 -0
  106. data/_sass/support/_functions.scss +9 -0
  107. data/_sass/support/_variables.scss +179 -0
  108. data/_sass/support/mixins/_buttons.scss +27 -0
  109. data/_sass/support/mixins/_layout.scss +56 -0
  110. data/_sass/support/mixins/_typography.scss +84 -0
  111. data/_sass/support/mixins/mixins.scss +3 -0
  112. data/_sass/support/support.scss +3 -0
  113. data/_sass/vendor/normalize.scss/README.md +7 -0
  114. data/_sass/vendor/normalize.scss/normalize.scss +349 -0
  115. data/_states/bamboo.md +8 -0
  116. data/_states/berry.md +8 -0
  117. data/_states/bloom.md +8 -0
  118. data/_states/bud.md +6 -0
  119. data/_states/fruit.md +8 -0
  120. data/_states/melon.md +8 -0
  121. data/_states/pot-bamboo.md +8 -0
  122. data/_states/seed.md +8 -0
  123. data/_states/sprout.md +8 -0
  124. data/_states/tags.md +8 -0
  125. data/_states/tea.md +8 -0
  126. data/assets/css/styles-dark.scss +3 -0
  127. data/assets/css/styles-light.scss +3 -0
  128. data/assets/css/styles.scss +8 -0
  129. data/assets/font/Cutive_Mono/CutiveMono-Regular.ttf +0 -0
  130. data/assets/font/Cutive_Mono/OFL.txt +93 -0
  131. data/assets/font/Old_Standard_TT/OFL.txt +93 -0
  132. data/assets/font/Old_Standard_TT/OldStandardTT-Bold.ttf +0 -0
  133. data/assets/font/Old_Standard_TT/OldStandardTT-Italic.ttf +0 -0
  134. data/assets/font/Old_Standard_TT/OldStandardTT-Regular.ttf +0 -0
  135. data/assets/font/exo2/Exo2-Italic-VariableFont_wght.ttf +0 -0
  136. data/assets/font/exo2/Exo2-VariableFont_wght.ttf +0 -0
  137. data/assets/font/exo2/OFL.txt +93 -0
  138. data/assets/font/exo2/README.txt +81 -0
  139. data/assets/font/exo2/static/Exo2-Black.ttf +0 -0
  140. data/assets/font/exo2/static/Exo2-BlackItalic.ttf +0 -0
  141. data/assets/font/exo2/static/Exo2-Bold.ttf +0 -0
  142. data/assets/font/exo2/static/Exo2-BoldItalic.ttf +0 -0
  143. data/assets/font/exo2/static/Exo2-ExtraBold.ttf +0 -0
  144. data/assets/font/exo2/static/Exo2-ExtraBoldItalic.ttf +0 -0
  145. data/assets/font/exo2/static/Exo2-ExtraLight.ttf +0 -0
  146. data/assets/font/exo2/static/Exo2-ExtraLightItalic.ttf +0 -0
  147. data/assets/font/exo2/static/Exo2-Italic.ttf +0 -0
  148. data/assets/font/exo2/static/Exo2-Light.ttf +0 -0
  149. data/assets/font/exo2/static/Exo2-LightItalic.ttf +0 -0
  150. data/assets/font/exo2/static/Exo2-Medium.ttf +0 -0
  151. data/assets/font/exo2/static/Exo2-MediumItalic.ttf +0 -0
  152. data/assets/font/exo2/static/Exo2-Regular.ttf +0 -0
  153. data/assets/font/exo2/static/Exo2-SemiBold.ttf +0 -0
  154. data/assets/font/exo2/static/Exo2-SemiBoldItalic.ttf +0 -0
  155. data/assets/font/exo2/static/Exo2-Thin.ttf +0 -0
  156. data/assets/font/exo2/static/Exo2-ThinItalic.ttf +0 -0
  157. data/assets/img/bonsai-dark.png +0 -0
  158. data/assets/img/bonsai-dark.svg +106 -0
  159. data/assets/img/bonsai-light.png +0 -0
  160. data/assets/img/bonsai-light.svg +81 -0
  161. data/assets/img/favicon-dark.png +0 -0
  162. data/assets/img/favicon-light.png +0 -0
  163. data/assets/img/nav-base-dark.svg +1 -0
  164. data/assets/img/nav-base-light.svg +1 -0
  165. data/assets/img/nav-bonsai-dark.svg +1 -0
  166. data/assets/img/nav-bonsai-light.svg +1 -0
  167. data/assets/img/nav-dot-dark.svg +1 -0
  168. data/assets/img/nav-dot-light.svg +1 -0
  169. data/assets/img/nav-wiki-links-dark.svg +1 -0
  170. data/assets/img/nav-wiki-links-light.svg +1 -0
  171. data/assets/js/entry.js +102 -0
  172. data/assets/js/graph.js +552 -0
  173. data/assets/js/scripts.js +80 -0
  174. data/assets/js/site-nav.js +132 -0
  175. data/assets/js/theme-colors.js +71 -0
  176. data/index.html +82 -0
  177. 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,10 @@
1
+ ---
2
+ id: 6da92007ac
3
+ title: Field Blogs
4
+ desc: ''
5
+ updated: 1623852679953
6
+ created: 1622846347979
7
+ tags: ๐ŸŒฟ
8
+ ---
9
+
10
+ Blogs are kind of like [[digital-garden.field-logs]]. They're posts
@@ -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: 7057669664
3
+ title: Recent
4
+ desc: ''
5
+ updated: 1620432005833
6
+ created: 1620432005833
7
+ tags: ๐ŸŒฟ
8
+ ---
9
+
10
+ The [[digital-garden.weather]] page shows which notes have been recently changed and displays whether they were added or created.
@@ -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,10 @@
1
+ ---
2
+ id: 13a58814d5
3
+ title: Links
4
+ desc: ''
5
+ updated: 1620493312857
6
+ created: 1620493312857
7
+ tags: "\U0001F33F"
8
+ ---
9
+
10
+ Links for the graph are built in different ways. See this note's children for details.
@@ -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,10 @@
1
+ ---
2
+ id: 8dfb3f5629
3
+ title: Current Note
4
+ desc: ''
5
+ updated: 1623851500519
6
+ created: 1620411823673
7
+ tags: "\U0001F331"
8
+ ---
9
+
10
+ If you look at the graph in the sidebar, you'll notice that the current [[features.notes|note]] pulsates.
@@ -0,0 +1,12 @@
1
+ ---
2
+ id: eb7a0642c2
3
+ title: Nodes
4
+ desc: ''
5
+ updated: 1622911529518
6
+ created: 1622911483705
7
+ tags: ๐ŸŒฟ
8
+ ---
9
+
10
+ The graph supports several kinds of nodes.
11
+
12
+ See child notes for types.
@@ -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,10 @@
1
+ ---
2
+ id: 4db646ee52
3
+ title: Net Web
4
+ desc: ''
5
+ updated: 1620413066801
6
+ created: 1620413066801
7
+ tags: "\U0001F33F"
8
+ ---
9
+ ๐Ÿ•ธ The net-web graph is built from the [[features.site-nav.graph.links.wikilinks]].
10
+
@@ -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,10 @@
1
+ ---
2
+ id: c2bb3b1725
3
+ title: Site Nav
4
+ desc: ''
5
+ updated: 1622910261590
6
+ created: 1622910228229
7
+ tags: ๐ŸŒฟ
8
+ ---
9
+
10
+ The sidebar supports several ways to navigate the site. See child notes for types.
@@ -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,10 @@
1
+ ---
2
+ id: 74801d5e0b
3
+ title: Light
4
+ desc: ''
5
+ updated: 1620503495243
6
+ created: 1620503495243
7
+ tags: ๐ŸŒฑ
8
+ ---
9
+
10
+ โ˜€๏ธ A nature-inspired light theme.
@@ -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.
@@ -0,0 +1,10 @@
1
+ ---
2
+ id: 9ced1b66d5
3
+ title: Feedback
4
+ desc: ''
5
+ updated: 1620695624628
6
+ created: 1620695624628
7
+ tags: ๐ŸŒธ
8
+ ---
9
+
10
+ Found a ๐Ÿ›? Want to see something new ๐Ÿชด? [Let me know.](https://github.com/manunamz/jekyll-bonsai)