commit db8854911b531957b51595c7848b842b4204a939
parent 24746d316552698493dcd4b48d13b3f5daa48f7d
author: nathanael <nathanael@dalliard.ch>
date: Sat, 25 Oct 2025 07:29:38 +0000
add nav
diffstat:
9 files changed, 26 insertions(+), 0 deletions(-)
diff --git a/content/about.md b/content/about.md
@@ -9,3 +9,5 @@ what i do
[use](/u/)
what i use
+
+[↩](/)
diff --git a/content/bitcoin.md b/content/bitcoin.md
@@ -13,3 +13,5 @@ there is no second best money
- fixed supply
building a local bitcoin community *([bitcoinwallis](https://bitcoinwallis.ch))*
+
+[↩](/)
diff --git a/content/contact.md b/content/contact.md
@@ -5,3 +5,5 @@ aliases:
- contact
---
[nathanael@dalliard.ch](mailto:nathanael@dalliard.ch)
+
+[↩](/)
diff --git a/content/heal.md b/content/heal.md
@@ -27,3 +27,5 @@ S|old|familiar
W|me|individual
grok self and others
+
+[↩](/)
diff --git a/content/now.md b/content/now.md
@@ -14,3 +14,5 @@ what i'm doing [now](https://nownownow.com/p/RPNW)
checkout [nownownow.com](https://nownownow.com) for more pages like this
2025-10-24
+
+[↩](/a/)
diff --git a/content/openbsd.md b/content/openbsd.md
@@ -5,3 +5,5 @@ aliases:
- openbsd
---
running on my laptop and my vps
+
+[↩](/)
diff --git a/content/uses.md b/content/uses.md
@@ -66,3 +66,5 @@ what i currently use
- [swisscom](https://www.swisscom.ch) prepaid mobile
2025-10-24
+
+[↩](/a/)
diff --git a/layouts/log/page.html b/layouts/log/page.html
@@ -0,0 +1,11 @@
+{{ define "main" }}
+<h1>{{ .Title }}</h1>
+{{ .Content }}
+{{ with .PrevInSection }}
+<a href="{{ .RelPermalink }}">←</a>
+{{ end }}
+<a href="/l/">↑</a>
+{{ with .NextInSection }}
+<a href="{{ .RelPermalink }}">→</a>
+{{ end }}
+{{ end }}
diff --git a/layouts/section.html b/layouts/section.html
@@ -4,4 +4,5 @@
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}
+<p><a href="/">↩</a></p>
{{ end }}