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

24 lines
849 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 -}}
2022-03-27 15:01:04 +02:00
{{ if eq . "about" }}
2021-10-23 22:20:01 +02:00
{{ $name := . | T }}
{{ if eq $name "" }}
{{ $name = . }}
{{ end }}
<a href="{{- . | relLangURL -}}">{{- $name | humanize -}}</a>
2022-03-27 14:24:21 +02:00
{{ end }}
2021-10-23 22:20:01 +02:00
{{- end -}}
2022-03-27 16:47:39 +02:00
<div style="display: flex; flex-direction: column; margin-left: 1rem;">
{{ range $.Site.Home.AllTranslations }}
{{ if ne .Lang $.Lang }}
<a href="{{- .Permalink -}}">{{- .Lang -}}</a>
{{ end }}
{{ end }}
</div>
2021-10-23 22:20:01 +02:00
</div>
</div>