2025-01-11 09:09:25 +01:00
|
|
|
{{ $opts := dict
|
|
|
|
"document" .
|
|
|
|
"indices" (slice "tags")
|
|
|
|
}}
|
2024-12-18 10:34:57 +01:00
|
|
|
{{ $related := .Site.RegularPages.Related . | first 5 }} {{ with $related }}
|
|
|
|
<h3>Related Posts</h3>
|
|
|
|
<ul>
|
|
|
|
{{ range . }}
|
2025-01-11 09:09:25 +01:00
|
|
|
{{ 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 }}
|
2024-12-18 10:34:57 +01:00
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|