hugo-theme-hyde-hyde/layouts/partials/post-related.html
2018-07-16 13:22:00 +10:00

11 lines
No EOL
284 B
HTML

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