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

18 lines
602 B
HTML
Raw Normal View History

2022-05-06 11:49:30 +02:00
{{ $img := resources.GetMatch "/images/logo_back_full.svg" }}
2022-05-09 21:37:34 +02:00
<a href="/" style="margin-left: .8rem;">
2022-05-06 11:49:30 +02:00
<img src="/images/logo.svg" alt="SVG mit img laden" class="dark-shadow">
2022-04-11 20:53:58 +02:00
</a>
2022-05-09 21:37:34 +02:00
<div>
2022-04-11 20:53:58 +02:00
{{- range site.Params.mainMenu -}}
{{ $name := . }}
{{ if i18n . }}
{{ $name = i18n . }}
{{ end }}
2022-05-22 23:49:19 +02:00
<a href="{{- . | relLangURL -}}" style="margin-left: .8rem;" class="funny-text-shadow">{{- $name | humanize -}}</a>
2022-04-11 20:53:58 +02:00
{{- end -}}
</div>
2022-05-06 11:49:30 +02:00