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

15 lines
482 B
HTML
Raw Normal View History

2021-10-23 22:20:01 +02:00
<div id="headerinner">
2022-03-26 19:22:14 +01:00
<a href="/">
<img src="/images/logo.svg" alt="SVG mit img laden" width="auto" height="100%" >
</a>
2021-10-23 22:20:01 +02:00
<div id="menu">
{{- range site.Params.mainSections -}}
{{ $name := . | T }}
{{ if eq $name "" }}
{{ $name = . }}
{{ end }}
<a href="{{- . | relLangURL -}}">{{- $name | humanize -}}</a>
{{- end -}}
</div>
</div>