hugo-theme-anubis2/layouts/partials/header.html

17 lines
501 B
HTML
Raw Normal View History

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>
{{ if .Site.Menus.main }}
<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>
{{ end }}
2021-05-17 20:04:42 +02:00
{{ partial "header-extra.html" . }}