themes/kube/layouts/partials/post/related-content.html (15 lines of code) (raw):
{{ range first 1 (where (where .Site.Pages ".Params.tags" "intersect" .Params.tags) "Permalink" "!=" .Permalink) }}
{{ $.Scratch.Set "has_related" true }}
{{ end }}
{{ if $.Scratch.Get "has_related" }}
<aside>
<heade><strong>Related Content</strong></header>
<hr>
<ul>
{{ $num_to_show := .Site.Params.related_content_limit | default 7 }}
{{ range first $num_to_show (where (where .Site.Pages ".Params.tags" "intersect" .Params.tags) "Permalink" "!=" .Permalink) }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a> – {{ .ReadingTime }} minutes
{{ end }}
</ul>
</aside>
{{ end }}