hugo-theme-stack/layouts/partials/article/components/related-contents.html
2022-05-21 17:34:10 +12:00

14 lines
538 B
HTML

{{ $related := (where (.Site.RegularPages.Related .) "Params.hidden" "!=" true) | first 5 }}
{{ with $related }}
<aside class="related-contents--wrapper">
<h2 class="section-title">{{ T "article.relatedContents" }}</h2>
<div class="related-contents">
<div class="flex article-list--tile">
{{ range . }}
{{ partial "article-list/tile" (dict "context" . "size" (printf "250x150 %s" .Params.image_anchor) "Type" "articleList") }}
{{ end }}
</div>
</div>
</aside>
{{ end }}