19 lines
632 B
HTML
19 lines
632 B
HTML
{{ $n := 1 }} <!-- Change this value to set the number of posts to display -->
|
|
{{ range first $n (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
|
|
|
|
{{- $image := .Resources.GetMatch (printf "%s" .Params.cover.image) -}}
|
|
{{- if $image -}}
|
|
|
|
{{- $optimizedImage := $image.Fill "100x100 webp q95 Center" -}}
|
|
<a href="{{ .RelPermalink }}" >
|
|
<h3>{{ .Title }}</h3>
|
|
<img src="{{ $optimizedImage.RelPermalink }}" alt="{{ .Title }} cover image"></img>
|
|
<small>{{ .Date.Format "January 2, 2006" }}</small>
|
|
<p>{{ .Summary | truncate 100 }}</p>
|
|
|
|
</a>
|
|
{{ end }}
|
|
|
|
|
|
{{ end }}
|
|
|