fix(_default/term): switch to new image helper

This commit is contained in:
Jimmy Cai 2020-09-10 18:58:41 +02:00
parent 28c06ef8ae
commit 19ff7a46bb
No known key found for this signature in database
GPG key ID: 3EA408E527F37B18

View file

@ -15,12 +15,16 @@
{{ end }} {{ end }}
</div> </div>
{{ if .Params.image }} {{ $image := partial "helper/image" . }}
{{- $image := partial "helper/image" . -}} {{ if $image.exists }}
{{- $thumbnail := $image.Fill "120x120" -}}
<div class="taxonomy-image"> <div class="taxonomy-image">
<img src="{{ $thumbnail.RelPermalink }}" width="{{ $thumbnail.Width }}" {{ if $image.local }}
height="{{ $thumbnail.Height }}" loading="lazy"> {{- $thumbnail := $image.src.Fill "120x120" -}}
<img src="{{ $thumbnail.RelPermalink }}" width="{{ $thumbnail.Width }}"
height="{{ $thumbnail.Height }}" loading="lazy">
{{ else }}
<img src="{{ $image.src }}" loading="lazy">
{{ end }}
</div> </div>
{{ end }} {{ end }}
</div> </div>