10 lines
275 B
HTML
10 lines
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>
|