oe7drt-website/layouts/partials/related.html
2025-02-09 10:03:05 +01:00

17 lines
496 B
HTML

{{ $opts := dict
"document" .
"indices" (slice "tags")
}}
{{ $related := .Site.RegularPages.Related . | first 5 }} {{ with $related }}
<h2>Related Posts</h2>
<ul>
{{ range . }}
{{ if and (eq .Section "posts") .IsPage }}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a> // <strong>{{ .Date | time.Format "2006" }}</strong>, {{ .Date | time.Format "January 2" }}<br />
<small>{{ .Summary | emojify }}</small>
</li>
{{ end }}
{{ end }}
</ul>
{{ end }}