bunteshaus.de/themes/buha/layouts/partials/structure/header.html

16 lines
489 B
HTML

<div id="headerinner">
<a href="/">
<img src="/images/logo.svg" alt="SVG mit img laden">
</a>
<div id="menu">
{{- range site.Params.mainMenu -}}
{{ $name := . }}
{{ if i18n . }}
{{ $name = i18n . }}
{{ end }}
<a href="{{- . | relLangURL -}}" style="color: white;">{{- $name | humanize -}}</a>
{{- end -}}
</div>
</div>