limit related pages to /posts (do not include other pages like /spam)
This commit is contained in:
parent
28222b530f
commit
590d50cfb5
1 changed files with 10 additions and 4 deletions
|
@ -1,11 +1,17 @@
|
|||
{{ $opts := dict
|
||||
"document" .
|
||||
"indices" (slice "tags")
|
||||
}}
|
||||
{{ $related := .Site.RegularPages.Related . | first 5 }} {{ with $related }}
|
||||
<h3>Related Posts</h3>
|
||||
<ul>
|
||||
{{ range . }}
|
||||
<li>
|
||||
<a href="{{ .RelPermalink }}">{{ .Title }}</a> // <strong>{{ .Date | time.Format "2006" }}</strong>, {{ .Date | time.Format "January 2" }}<br />
|
||||
<small>{{ .Summary }}</small>
|
||||
</li>
|
||||
{{ 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 }}
|
||||
|
|
Loading…
Reference in a new issue