log101-dot-dev/layouts/partials/related-posts.html

12 lines
256 B
HTML
Raw Normal View History

2023-12-04 03:43:34 +00:00
{{- $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 -}}