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 }}
</div>
{{ if .Params.image }}
{{- $image := partial "helper/image" . -}}
{{- $thumbnail := $image.Fill "120x120" -}}
{{ $image := partial "helper/image" . }}
{{ if $image.exists }}
<div class="taxonomy-image">
{{ if $image.local }}
{{- $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>
{{ end }}
</div>