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

10 lines
347 B
HTML
Raw Normal View History

2020-02-02 16:01:10 +01:00
<h1 class="site-header">
2020-01-12 07:51:51 +01:00
<a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
</h1>
<nav>
{{ $currentPage := . }}
{{ range .Site.Menus.main }}
<a class="{{if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }} active{{end}}" href="{{ .URL }}" title="{{ .Title }}">{{ .Name }}</a>
{{ end }}
</nav>