Add custom menu item param to set url function (#601)

This commit is contained in:
Piotr Orzechowski
2021-11-02 18:33:24 +01:00
committed by GitHub
parent ee806a669f
commit 427f124aed
3 changed files with 3 additions and 3 deletions

View File

@@ -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 }}