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

24 lines
738 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 }}
2021-07-16 22:31:35 +02:00
<nav class="nav nav-top"{{- with .Site.Params.aria.menu_top }} aria-label="{{ . }}"{{- end }}>
<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 }}
</li>
{{ with .Post }}{{ . }}{{ end }}
{{- end }}
2021-07-16 22:31:35 +02:00
</ul>
</nav>
</header>
2020-12-29 02:25:37 +01:00
<hr>