use os .RelPermalink brokes the multilingual host functionality

https://gohugo.io/content-management/multilingual/#configure-multilingual-multihost

this functionality needs to create the language links with .Permalink
This commit is contained in:
Ricardo Peironcely 2023-10-01 19:45:26 +01:00 committed by GitHub
parent c086834f0e
commit 207fa66431
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@
<ul class="{{ cond (eq $.Site.Language.LanguageDirection "rtl") "pr0 ml3" "pl0 mr3" }}">
{{ range .Translations }}
<li class="list f5 f4-ns fw4 dib {{ cond (eq $.Site.Language.LanguageDirection "rtl") "pl3" "pr3" }}">
<a class="hover-white no-underline white-90" href="{{ .RelPermalink }}">{{ .Lang }}</a>
<a class="hover-white no-underline white-90" href="{{ .Permalink }}">{{ .Lang }}</a>
</li>
{{ end}}
</ul>