16 lines
489 B
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>
|