Hugo-theme-stack/layouts/partials/article/components/related-contents.html

13 lines
504 B
HTML
Raw Normal View History

2022-03-03 17:11:19 -05:00
{{ $related := (where (.Site.RegularPages.Related .) "Params.hidden" "!=" true) | first 5 }}
{{ with $related }}
<aside class="related-contents--wrapper">
2022-03-03 17:11:19 -05:00
<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" "250x150" "Type" "articleList") }}
{{ end }}
2020-08-22 07:20:08 -04:00
</div>
2022-03-03 17:11:19 -05:00
</div>
</aside>
2022-03-03 17:11:19 -05:00
{{ end }}