From c2261bfc9fd0b9b5fc6bb3ba7511533b5ab5ecce Mon Sep 17 00:00:00 2001
From: Vigilio Desto
Date: Fri, 10 Apr 2026 20:33:25 +0200
Subject: [PATCH] =?UTF-8?q?drop=20,=20use=20=20=E2=80=94=20bold=20landmark=20structure?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
body direct children:
+ {{- end }}
+ {{- with .GetTerms "tags" }}
+
+ {{- end }}
+
+{{ end }}
+
+{{ define "content" }}
+
+ {{ .Content }}
+ {{- if or .PrevInSection .NextInSection }}
+
+ {{- end }}
+
{{ end }}
diff --git a/layouts/vault/single.html b/layouts/vault/single.html
index fa0726e..c6be8cf 100644
--- a/layouts/vault/single.html
+++ b/layouts/vault/single.html
@@ -1,113 +1,92 @@
-{{ define "main" }}
-
-
-
- {{/* ── Left sidebar ─────────────────────────────────────────────── */}}
-
-
-
-
- {{/* ── Main content ──────────────────────────────────────────────── */}}
-
-
-
- {{- if .Description -}}
-
- {{ .Title }}
- {{ .Description }}
-
- {{- else -}}
- {{ .Title }}
- {{- end }}
-
- {{ .Content }}
-
- {{/* ── Prev / Next — from front matter, not Hugo section order ── */}}
- {{- $prevURL := index .Params "prev-url" -}}
- {{- $prevTitle := index .Params "prev-title" -}}
- {{- $nextURL := index .Params "next-url" -}}
- {{- $nextTitle := index .Params "next-title" -}}
- {{- if or $prevURL $nextURL -}}
-
- {{- end -}}
-
-
-
-
- {{/* ── Right TOC ────────────────────────────────────────────────── */}}
-
- {{- with .TableOfContents -}}
-
- {{- end -}}
-
-
-
+{{ define "header" }}
+
+ {{- if .Description -}}
+
+ {{ .Title }}
+ {{ .Description }}
+
+ {{- else -}}
+ {{ .Title }}
+ {{- end }}
+
+{{ end }}
+
+{{ define "content" }}
+ {{/* Vault sidebar navigation */}}
+
+
+
+ {{ .Content }}
+
+ {{- $prevURL := index .Params "prev-url" -}}
+ {{- $prevTitle := index .Params "prev-title" -}}
+ {{- $nextURL := index .Params "next-url" -}}
+ {{- $nextTitle := index .Params "next-title" -}}
+ {{- if or $prevURL $nextURL -}}
+
+ {{- end -}}
+
+
+ {{- with .TableOfContents -}}
+
+ {{- end -}}
{{ end }}