2020-08-22 07:20:08 -04:00
|
|
|
<article class="{{ if .Params.image }}has-image{{ end }}">
|
|
|
|
{{ if .Params.image }}
|
|
|
|
{{- $image := partial "helper/image" . -}}
|
|
|
|
{{- $thumbnailNotDesktop := $image.Resize "x500 smart" -}}
|
|
|
|
|
|
|
|
<div class="article-image">
|
2020-08-25 15:16:47 -04:00
|
|
|
<a href="{{ .Permalink }}">
|
|
|
|
<img src="{{ $thumbnailNotDesktop.RelPermalink }}"
|
|
|
|
width="{{ $thumbnailNotDesktop.Width }}" height="{{ $thumbnailNotDesktop.Height }}" loading="lazy"
|
|
|
|
alt="Featured image of post {{ .Title }}" />
|
|
|
|
</a>
|
2020-08-22 07:20:08 -04:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
2020-08-29 05:34:26 -04:00
|
|
|
{{ partial "article/components/details" . }}
|
2020-08-22 07:20:08 -04:00
|
|
|
</article>
|