Files
hugo-theme-stack/layouts/partials/article/components/header.html
T

20 lines
824 B
HTML
Raw Normal View History

<header class="article-header">
2020-09-10 18:53:36 +02:00
{{ $image := partial "helper/image" . }}
2020-09-10 18:53:36 +02:00
{{ if $image.exists }}
<div class="article-image">
{{ if $image.local }}
{{- $tablet := $image.src.Resize "1024x" -}}
{{- $desktop := $image.src.Resize "2000x" -}}
2020-09-10 18:53:36 +02:00
<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 }}" />
{{ else }}
<img src="{{ $image.src }}" loading="lazy" alt="Featured image of post {{ .Title }}" />
{{ end }}
</div>
{{ end }}
2020-08-29 11:34:26 +02:00
{{ partial "article/components/details" . }}
</header>