devroom.io/themes/devroom-2020/layouts/partials/header.html

10 lines
284 B
HTML
Raw Normal View History

2020-03-09 10:40:44 +00:00
<header>
<nav>
{{ with .Site.Menus.main}}
{{ range $index, $value := sort . }}
{{ if (ne $index 0) }} - {{ end }}
<a href="{{ .URL | absLangURL }}">{{ .Name }}</a>
{{ end }}
{{ end }}
</nav>
</header>