rimarima/themes/hugo-liftoff/layouts/partials/posts/related.html
Adrian Amaglio c09f092db4 init
2023-11-17 10:54:41 +01:00

14 lines
428 B
HTML

<!-- Reusable template for related posts (at the end of posts single pages) -->
{{ if .Param "related" }}
{{ $related := .Site.RegularPages.Related . | first 5 }}
{{ with $related }}
<section class="related">
<h2>See Also</h2>
<ul class="related-posts">
{{ range . }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
</section>
{{ end }}
{{ end }}