main link does not switch back to default language if in another language (#202)

no need to configure the language path in the different pages
This commit is contained in:
a1x42
2019-08-05 14:33:43 +02:00
committed by Luiz F. A. de Prá
parent 7ed7d3c51e
commit dea81ca434
3 changed files with 11 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
<nav class="navigation">
<section class="container">
<a class="navigation-title" href="{{ .Site.BaseURL | absLangURL }}">
<a class="navigation-title" href="{{ .Site.BaseURL | relLangURL }}">
{{ .Site.Title }}
</a>
<input type="checkbox" id="menu-toggle" />
@@ -9,7 +9,7 @@
{{ with .Site.Menus.main}}
{{ range sort . }}
<li class="navigation-item">
<a class="navigation-link" href="{{ .URL | safeURL }}">{{ .Name }}</a>
<a class="navigation-link" href="{{ .URL | absLangURL }}">{{ .Name }}</a>
</li>
{{ end }}
{{ end }}