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

24 lines
706 B
HTML
Raw Normal View History

<header class="header">
<a class="title" href="{{ .Site.Home.RelPermalink }}">{{ .Site.Title }}</a>
2019-11-20 19:56:22 +01:00
{{- 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 }}
{{ with .Pre }}{{ . }}{{ end }}
<li{{ with .Params.class }} class="{{ . }}"{{ end }}>
{{- if .URL }}
<a href="{{ .URL }}"{{ with .Title }} title="{{ . }}"{{ end }}>{{ .Name }}</a>
{{- else }}
<li>{{ .Name }}</li>
{{- end }}
2019-11-20 19:56:22 +01:00
</li>
{{ with .Post }}{{ . }}{{ 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>