2020-08-24 13:27:51 -04:00
|
|
|
<header class="article-header">
|
|
|
|
{{ if .Params.image }}
|
|
|
|
{{- $image := partial "helper/image" . -}}
|
|
|
|
|
|
|
|
{{- $tablet := $image.Resize "1024x" -}}
|
|
|
|
{{- $desktop := $image.Resize "2000x" -}}
|
|
|
|
|
|
|
|
<div class="article-image">
|
|
|
|
<img srcset="{{ $tablet.RelPermalink }} 1024w, {{ $desktop.RelPermalink }} 2000w"
|
|
|
|
src="{{ $desktop.RelPermalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}"
|
|
|
|
loading="lazy"
|
|
|
|
alt="Featured image of post {{ .Title }}" />
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
2020-08-29 05:34:26 -04:00
|
|
|
{{ partial "article/components/details" . }}
|
2020-08-24 13:27:51 -04:00
|
|
|
</header>
|