hugo-theme-anubis2/layouts/partials/header.html
2020-02-02 18:01:10 +03:00

10 lines
347 B
HTML

<h1 class="site-header">
<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>