hugo-theme-stack-stars/layouts/partials/article-list/tile.html

25 lines
1 KiB
HTML
Raw Normal View History

{{ $image := partial "helper/image" .context }}
<article class="{{ if $image.exists }}has-image{{ end }}">
2020-08-22 11:20:08 +00:00
<a href="{{ .context.Permalink }}">
{{ if $image.exists }}
<div class="article-image">
2020-09-11 14:01:01 +00:00
{{ if $image.resource }}
{{- $imageRaw := $image.resource | resources.Fingerprint "md5" -}}
{{- $thumbnail := $imageRaw.Fill .size -}}
<img src="{{ $thumbnail.RelPermalink }}" width="{{ $thumbnail.Width }}" height="{{ $thumbnail.Height }}"
loading="lazy" data-key="{{ .context.Slug }}" data-hash="{{ $imageRaw.Data.Integrity }}">
{{ else }}
2020-09-11 14:01:01 +00:00
<img src="{{ $image.permalink }}" loading="lazy" data-key="{{ .context.Slug }}" data-hash="{{ $image.permalink }}"/>
{{ end }}
</div>
2020-08-22 11:20:08 +00:00
{{ end }}
<div class="article-details">
<h2 class="article-title">
{{- .context.Title -}}
</h2>
</div>
</a>
</article>