2021-05-17 20:04:42 +02:00
|
|
|
<div class="header-top">
|
2022-02-12 08:19:24 +01:00
|
|
|
{{ partial "site-title.html" . }}
|
2021-05-17 20:04:42 +02:00
|
|
|
{{ partial "social.html" . }}
|
|
|
|
</div>
|
2020-08-29 09:02:58 +02:00
|
|
|
{{ if .Site.Menus.main }}
|
2020-08-28 16:51:29 +02:00
|
|
|
<nav>
|
|
|
|
{{ $currentPage := . }}
|
|
|
|
{{ range .Site.Menus.main }}
|
|
|
|
<a class="{{if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }} active{{end}}" href="{{ .URL | absLangURL }}" title="{{ .Title }}">{{ .Name }}</a>
|
|
|
|
{{ end }}
|
|
|
|
</nav>
|
|
|
|
{{ else }}
|
|
|
|
<nav></nav>
|
2020-08-29 09:02:58 +02:00
|
|
|
{{ end }}
|
2021-01-11 19:39:27 +01:00
|
|
|
|
2021-05-17 20:04:42 +02:00
|
|
|
{{ partial "header-extra.html" . }}
|