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

22 lines
516 B
HTML

<header class="header">
<a class="title" href="{{ .Site.Home.URL }}">{{ .Site.Title }}</a>
{{- with .Site.Params.subtitle }}
<span class="description">{{ . }}</span>
{{- end }}
</header>
<nav class="nav nav-top"{{- with .Site.Params.aria.menu_top }} aria-label="{{ . }}"{{- end }}>
<ul>
{{- $curr := . }}
{{- range .Site.Menus.main }}
{{- if .URL }}
<li>
<a href="{{ .URL }}">{{ .Name }}</a>
</li>
{{- else }}
{{ .Name }}
{{- end }}
{{- end }}
</ul>
</nav>
<hr>