forked from Bunteshaus/bunteshaus.de
18 lines
539 B
HTML
18 lines
539 B
HTML
<div id="headerinner">
|
|
<a href="/">
|
|
<img src="/images/logo.svg" alt="SVG mit img laden" width="auto" height="100%" >
|
|
</a>
|
|
<div id="menu">
|
|
{{- range site.Params.mainSections -}}
|
|
{{ if eq . "about" }}
|
|
{{ $name := . | T }}
|
|
{{ if eq $name "" }}
|
|
{{ $name = . }}
|
|
{{ end }}
|
|
<a href="{{- . | relLangURL -}}">{{- $name | humanize -}}</a>
|
|
{{ end }}
|
|
{{- end -}}
|
|
|
|
</div>
|
|
</div>
|