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

28 lines
993 B
HTML
Raw Normal View History

2020-08-22 11:20:08 +00:00
<article>
<div class="article-details">
<h2 class="article-title">
<a href="{{ .Permalink }}">
{{- .Title -}}
</a>
</h2>
<footer class="article-time">
<time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
{{- .Date.Format (or .Site.Params.dateFormat.published "Jan 02, 2006") -}}
2020-08-22 11:20:08 +00:00
</time>
</footer>
</div>
{{ $image := partial "helper/image" . }}
2020-08-22 11:20:08 +00:00
{{ if $image.exists }}
<div class="article-image">
{{ if $image.local }}
{{- $thumbnail := $image.src.Fill "120x120" -}}
<img src="{{ $thumbnail.RelPermalink }}" width="{{ $thumbnail.Width }}"
height="{{ $thumbnail.Height }}" loading="lazy">
{{ else }}
<img src="{{ $image.src }}" loading="lazy" alt="Featured image of post {{ .Title }}" />
{{ end }}
</div>
2020-08-22 11:20:08 +00:00
{{ end }}
</article>