aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/related-posts.html
blob: d533bfd473c234fe6bd5dd00de44e2c9b0e9d6d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{{- $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 -}}