2020-08-22 19:20:08 +08: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-26 03:16:47 +08: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 19:20:08 +08:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
2020-08-29 17:34:26 +08:00
|
|
|
{{ partial "article/components/details" . }}
|
2020-08-22 19:20:08 +08:00
|
|
|
</article>
|