2020-09-17 18:12:26 -04:00
|
|
|
{{ $image := partialCached "helper/image" (dict "Context" .context "Type" .Type) .context.RelPermalink .Type }}
|
2020-09-10 12:53:36 -04:00
|
|
|
<article class="{{ if $image.exists }}has-image{{ end }}">
|
2020-10-31 18:24:58 -04:00
|
|
|
<a href="{{ .context.RelPermalink }}">
|
2020-09-10 12:53:36 -04:00
|
|
|
|
|
|
|
{{ if $image.exists }}
|
|
|
|
<div class="article-image">
|
2020-09-11 10:01:01 -04:00
|
|
|
{{ if $image.resource }}
|
|
|
|
{{- $imageRaw := $image.resource | resources.Fingerprint "md5" -}}
|
2020-12-23 15:02:35 -05:00
|
|
|
{{- $Permalink := $imageRaw.RelPermalink -}}
|
|
|
|
{{- $Width := $imageRaw.Width -}}
|
|
|
|
{{- $Height := $imageRaw.Height -}}
|
2020-09-10 12:53:36 -04:00
|
|
|
|
2022-06-05 12:21:08 -04:00
|
|
|
{{- if .context.Site.Params.imageProcessing.cover.enabled -}}
|
2020-12-23 15:02:35 -05:00
|
|
|
{{- $thumbnail := $imageRaw.Fill .size -}}
|
|
|
|
{{- $Permalink = $thumbnail.RelPermalink -}}
|
|
|
|
{{- $Width = $thumbnail.Width -}}
|
|
|
|
{{- $Height = $thumbnail.Height -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
<img src="{{ $Permalink }}"
|
|
|
|
width="{{ $Width }}"
|
|
|
|
height="{{ $Height }}"
|
2021-12-04 15:05:53 -05:00
|
|
|
loading="lazy"
|
|
|
|
alt="Featured image of post {{ .context.Title }}"
|
|
|
|
{{ with .context.Slug }}data-key="{{ . }}" {{ end }}
|
2020-12-23 15:02:35 -05:00
|
|
|
data-hash="{{ $imageRaw.Data.Integrity }}">
|
2020-09-10 12:53:36 -04:00
|
|
|
{{ else }}
|
2020-09-11 10:01:01 -04:00
|
|
|
<img src="{{ $image.permalink }}" loading="lazy" data-key="{{ .context.Slug }}" data-hash="{{ $image.permalink }}"/>
|
2020-09-10 12:53:36 -04:00
|
|
|
{{ end }}
|
|
|
|
</div>
|
2020-08-22 07:20:08 -04:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<div class="article-details">
|
|
|
|
<h2 class="article-title">
|
|
|
|
{{- .context.Title -}}
|
|
|
|
</h2>
|
|
|
|
</div>
|
|
|
|
</a>
|
2022-06-05 12:21:08 -04:00
|
|
|
</article>
|