feat(nav): "Alle Schauplätze"/"All locations" als ersten Dropdown-Eintrag

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).
This commit is contained in:
maik
2026-08-19 16:57:06 +02:00
parent fb4310666c
commit dab258140f
+10
View File
@@ -51,6 +51,11 @@ removePathAccents = true # ä/ö/ü → a/o/u in URLs
name = "Schauplätze" name = "Schauplätze"
url = "/schauplaetze/" url = "/schauplaetze/"
weight = 20 weight = 20
[[languages.de.menus.main]]
name = "Alle Schauplätze"
parent = "Schauplätze"
url = "/schauplaetze/"
weight = -1
[[languages.de.menus.main]] [[languages.de.menus.main]]
name = "Aufenthaltsorte" name = "Aufenthaltsorte"
parent = "Schauplätze" parent = "Schauplätze"
@@ -117,6 +122,11 @@ removePathAccents = true # ä/ö/ü → a/o/u in URLs
name = "Locations" name = "Locations"
url = "/schauplaetze/" url = "/schauplaetze/"
weight = 20 weight = 20
[[languages.en.menus.main]]
name = "All locations"
parent = "Locations"
url = "/schauplaetze/"
weight = -1
[[languages.en.menus.main]] [[languages.en.menus.main]]
name = "Whereabouts" name = "Whereabouts"
parent = "Locations" parent = "Locations"