From dab258140fb69984a132c7dc861d9c60cba15262 Mon Sep 17 00:00:00 2001 From: maik Date: Wed, 19 Aug 2026 16:57:06 +0200 Subject: [PATCH] =?UTF-8?q?feat(nav):=20"Alle=20Schaupl=C3=A4tze"/"All=20l?= =?UTF-8?q?ocations"=20als=20ersten=20Dropdown-Eintrag?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Eindeutig, dass der Punkt zur Gesamtuebersicht /schauplaetze/ fuehrt – das Top-Level "Schauplaetze" ist Link und Dropdown-Toggle zugleich. weight -1, damit "Alle" vor den Kategorien steht (weight 0 sortiert Hugo ans Ende). --- hugo.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hugo.toml b/hugo.toml index 61075cb..4888643 100644 --- a/hugo.toml +++ b/hugo.toml @@ -51,6 +51,11 @@ removePathAccents = true # ä/ö/ü → a/o/u in URLs name = "Schauplätze" url = "/schauplaetze/" weight = 20 + [[languages.de.menus.main]] + name = "Alle Schauplätze" + parent = "Schauplätze" + url = "/schauplaetze/" + weight = -1 [[languages.de.menus.main]] name = "Aufenthaltsorte" parent = "Schauplätze" @@ -117,6 +122,11 @@ removePathAccents = true # ä/ö/ü → a/o/u in URLs name = "Locations" url = "/schauplaetze/" weight = 20 + [[languages.en.menus.main]] + name = "All locations" + parent = "Locations" + url = "/schauplaetze/" + weight = -1 [[languages.en.menus.main]] name = "Whereabouts" parent = "Locations"