1
0
mirror of https://gitlab.com/MisterBiggs/blog.git synced 2025-06-16 07:06:46 +00:00
2019-08-08 22:44:23 -07:00

13 lines
427 B
HTML

<h3>Recent Posts</h3>
<ul class='posts aside'>
<!-- filter array of posts with the first tag of this post (related) -->
<!-- if post doesn't have any tags use RegularPages -->
<!-- filter out the current post -->
<!-- return atmost 2 posts -->
{{ $title := .Params.title }}
{{ range first 2 .Site.RegularPages }}
{{ if not (eq .Title $title) }}
{{ partial "excerpt.html" . }}
{{ end }}
{{ end }}
</ul>