6cee5adc69
Set `relatedPosts` to `true` in the config to enable this.
11 lines
256 B
HTML
11 lines
256 B
HTML
{{- $related := .Site.RegularPages.Related . | first 5 }}
|
|
{{ with $related }}
|
|
<div class="related-posts thin">
|
|
<h2>{{ i18n "seeAlso" }}</h2>
|
|
<ul>
|
|
{{ range . }}
|
|
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
{{ end -}}
|