website/themes/datacoop2020/layouts/partials/nav.html

27 lines
788 B
HTML
Raw Normal View History

<nav>
<ol>
2022-11-12 00:17:57 +01:00
{{ $currentPage := . }}
{{ range .Site.Menus.nav }}
2023-03-04 23:43:37 +01:00
{{ $atURL := absURL $currentPage.RelPermalink }}
{{ $compURL := absURL .URL }}
<li><a href="{{ .URL }}"{{ if (eq $atURL $compURL) }} class="active"{{ end }}>{{ .Name }}</a>
<ol class="sub-menu">
{{ range .Children }}
{{ $compURL := absURL .URL }}
<li><a href="{{ .URL }}"{{ if (eq $atURL $compURL) }} class="active"{{ end }}>{{ .Name }}</a>
</li>
{{ end }}
</ol>
</li>
{{ end }}
</ol>
<footer>
<ol>
2022-11-12 00:17:57 +01:00
{{ range $.Site.Home.AllTranslations }}
<li><a href="{{ .Permalink }}">{{ .Language.LanguageName }}</a></li>
2022-11-12 00:17:57 +01:00
{{ end }}
</ol>
</footer>
</nav>