hugo-theme-hyde-hyde/layouts/partials/page-single/post-related.html
2018-07-27 08:41:33 +10:00

10 lines
266 B
HTML

{{ $related := .Site.RegularPages.Related . | first 5 }}
{{ with $related -}}
<div class="post__related">
<!-- related content -->
<h2>Related Articles</h2>
<ul class="related-posts">
{{ partial "posts-list.html" . }}
</ul>
</div>
{{- end }}