hugo-theme-hyde-hyde/layouts/partials/post-related.html
2018-07-21 06:32:00 +10:00

10 lines
No EOL
275 B
HTML

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