From 427f124aedd72b1f4028e1fe3ed58f77f8af17db Mon Sep 17 00:00:00 2001
From: Piotr Orzechowski <piotr@orzechowski.tech>
Date: Tue, 02 Nov 2021 17:33:24 +0000
Subject: [PATCH] Add custom menu item param to set url function (#601)
---
layouts/partials/header.html | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 4b7924e..76bddec 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -12,7 +12,7 @@
{{ with .Site.Menus.main}}
{{ range sort . }}
<li class="navigation-item">
- <a class="navigation-link" href="{{ .URL | relLangURL }}">{{ .Name }}</a>
+ <a class="navigation-link" href="{{ index (apply (slice .URL) (.Params.urlFunc | default "relLangURL") ".") 0 }}">{{ .Name }}</a>
</li>
{{ end }}
{{ end }}
--
Gitblit v1.10.0