1
0
mirror of https://gitlab.com/MisterBiggs/blog.git synced 2025-08-03 12:01:31 +00:00
Files
blog/blog/themes/hugo-swift-theme/layouts/partials/aside.html
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>