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

78 lines
2.4 KiB
HTML

{{ $img := .image }}
{{ if .Resources.GetMatch .image }}
{{ $img = .Resources.GetMatch .image }}
{{ else if resources.GetMatch .image }}
{{ $img = resources.GetMatch .image }}
{{ end }}
{{ $title := .title }}
{{ $good_w := "1920"}}
{{ $good_h := "850"}}
{{ $banner := .context.Params.banner }}
{{ $test := true }}
{{ if and $img (ne $banner false) }}
{{ $tiny := ($img.Resize "640x q50") }}
{{ $small := ($img.Resize "768x q50") }}
{{ $medium := ($img.Resize "10240x q50") }}
{{ $large := ($img.Resize "1366x q50") }}
<div class="ttestt banner b" style="background-image: url({{- $img.Permalink -}});">
{{ if eq hugo.Environment "development" }}
<div class="dev right">
{{ $w := $img.Width }}
{{ $h := $img.Height }}
{{ if lt (int $w) $good_w }}
{{ $test = false }}
{{ if eq hugo.Environment "development" }}
Width: {{ $w }}px: too small, better {{ $good_w -}}px in width<br>
{{ end }}
{{ else if gt (int $w) $good_w }}
{{ $test = false }}
{{ if eq hugo.Environment "development" }}
Width: {{ $w }}px: too big, better {{ $good_w -}}px in width<br>
{{ end }}
{{ end }}
{{ if lt (int $h) $good_h }}
{{ $test = false }}
{{ if eq hugo.Environment "development" }}
Height: {{ $h }}px: too small, better {{ $good_h -}}px in height<br>
{{ end }}
{{ else if gt (int $h) $good_h }}
{{ $test = false }}
{{ if eq hugo.Environment "development" }}
Height: {{ $h }}px: too big, better {{ $good_h -}}px in height<br>
{{ end }}
{{ end }}
{{ if eq hugo.Environment "development" }}
{{ if eq $test false }}
{{ printf "Please correct %s" $img }}
{{ end }}
{{ end }}
</div>
{{ end }}
{{ if $title }}<h1 class="title">{{ $title }}</h1> {{ end }}
</div>
{{ else }}
<div class="banner b altbg">
{{ if eq hugo.Environment "development" }}
{{ $c := "" }}
{{ $str := "" }}
{{ if eq $banner false }}
{{ $c = "black" }}
{{ $str = "Info: Banner is turned off for this." }}
{{ else }}
{{ $str = printf "content/%s/banner* missing.." .section }}
{{ end }}
<div class="dev right {{ $c }}">
{{ $str }}
</div>
{{ end }}
{{ if $title }}<h1 class="title">{{ $title }}</h1> {{ end }}
</div>
{{ end }}
{{ define "debug" }}
{{ if and (ne .Kind "taxonomy") (ne .Kind "page") (ne .Kind "section") (ne .Kind "term")}}
{{ site.Data.i18n.Languages }}<br>
{{ end }}
{{ end }}