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

22 lines
516 B
HTML
Raw Normal View History

<header class="header">
2019-11-20 19:56:22 +01:00
<a class="title" href="{{ .Site.Home.URL }}">{{ .Site.Title }}</a>
{{- with .Site.Params.subtitle }}
<span class="description">{{ . }}</span>
2019-11-20 19:56:22 +01:00
{{- end }}
</header>
2021-03-22 18:22:55 +01:00
<nav class="nav nav-top"{{- with .Site.Params.aria.menu_top }} aria-label="{{ . }}"{{- end }}>
2019-11-20 19:56:22 +01:00
<ul>
{{- $curr := . }}
{{- range .Site.Menus.main }}
{{- if .URL }}
2019-11-20 19:56:22 +01:00
<li>
2020-12-28 20:57:13 +01:00
<a href="{{ .URL }}">{{ .Name }}</a>
2019-11-20 19:56:22 +01:00
</li>
{{- else }}
{{ .Name }}
{{- end }}
2019-11-20 19:56:22 +01:00
{{- end }}
</ul>
2019-11-26 22:54:07 +01:00
</nav>
2020-12-29 02:25:37 +01:00
<hr>