website/themes/datacoop2020/layouts/partials/nav.html
Benjamin Bach 16fab68e61
All checks were successful
continuous-integration/drone/pr Build is passing
Use new-new theme, still needs a lot of clean-up removing old-stuff
2022-11-09 02:03:14 +01:00

17 lines
341 B
HTML

<nav>
<ol>
{{ range .Site.Menus.nav }}
<li><a href="{{ .URL }}">{{ .Name }}</a></li>
{{ end }}
</ol>
<footer>
<ol>
{{ range $.Site.Home.AllTranslations }}
<li><a href="{{ .Permalink }}">{{ .Language.LanguageName }}</a></li>
{{ end }}
</ol>
</footer>
</nav>