Files
siteperso/layouts/partials/latest-posts.html
2023-10-16 10:26:38 +02:00

34 lines
1.2 KiB
HTML

<div class="row row-cols-1 row-cols-md-2 row-cols-lg-3 g-4">
{{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "post" ) }}
<div class="col">
<div class="card h-100">
<div class="card-body">
<h4 class="card-title">
<a class="stretched-link text-primary text-decoration-none" href="{{ .Permalink }}">
{{ .Title }}
</a>
</h4>
{{ with .Params.authors }}
<p class="card-subtitle text-muted">
by {{ index . 0 }}
</p>
{{ end }}
<p class="card-text mt-3">
{{ with .Params.description }}
{{ . }}
{{ else }}
{{ .Summary | truncate 200 }}
{{ end }}
</p>
</div>
<div class="card-footer">
<small class="text-muted">{{ .Date | time.Format ":date_long" }}</small>
</div>
</div>
</div>
{{ end }}
</div>