bunteshaus.de/themes/buha/layouts/_default/_markup/render-image.html

47 lines
1.9 KiB
HTML

{{- if strings.HasPrefix .Destination "http" -}}
<a href="{{- .Destination -}}" class="no_underline">
<img loading="lazy"
src="{{ .Destination | safeURL }}"
alt="{{ .Text }}"
{{ with .Title}} title="{{ . }}"{{ end }} />
<div class="dfjcc">{{ .Text }}</div>
</a>
{{- else -}}
{{ $ignore := slice (.Page.Resources.GetMatch "banner*") }}
{{ $images := .Page.Resources.ByType "image" }}
{{ $images = complement $ignore $images }}
{{ if where (.Page.Resources.ByType "image") ".File.TranslationBaseName" "!=" "banner*" }}
{{ $img_tmp := "" }}
{{ $dest := string (printf "%s.*" .Destination) }}
{{ if .Page.Resources.GetMatch $dest }}
{{- $img_tmp = .Page.Resources.GetMatch $dest -}}
{{ else }}
{{ $nr := .Destination }}
{{- $img_tmp = index $images (sub (int $nr) 1) -}}
{{ end }}
{{ if $img_tmp }}
{{- $image := .Page.Resources.GetMatch (printf "%s" ($img_tmp | safeURL)) -}}
<div class="article-image">
<a href="{{- $image.Permalink -}}" class="no_underline">
{{- $permalink := "" -}}
{{- if ne $image nil -}}
{{- $permalink = $image.Permalink -}}
{{- else -}}
{{- $image = imageConfig (printf "static/%s" (.Destination | safeURL)) -}}
{{- $permalink = (printf "/%s" (.Destination | safeURL)) -}}
{{- end -}}
<img loading="lazy"
src="{{ $permalink }}"
alt="{{ .Text }}"
{{ with .Title}} title="{{ . }}"{{ end }}
width={{ $image.Width }}
height="{{ $image.Height }}" />
<div>{{ .Text }}</div>
</a>
</div>
{{ end }}
{{ end }}
{{- end -}}