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

10 lines
372 B
HTML
Raw Normal View History

2020-06-21 22:23:07 +02:00
<h1 class="site-title">
2020-05-24 18:07:02 +02:00
<a href="{{ .Site.BaseURL | relLangURL }}">{{ .Site.Title }}</a>
2020-01-12 07:51:51 +01:00
</h1>
<nav>
{{ $currentPage := . }}
{{ range .Site.Menus.main }}
2020-05-24 18:07:02 +02:00
<a class="{{if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }} active{{end}}" href="{{ .URL | absLangURL }}" title="{{ .Title }}">{{ .Name }}</a>
2020-01-12 07:51:51 +01:00
{{ end }}
</nav>