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

13 lines
504 B
HTML
Raw Normal View History

<aside class="related-contents--wrapper">
2020-08-22 11:20:08 +00:00
{{ $related := .Site.RegularPages.Related . | first 5 }}
{{ with $related }}
<h2 class="section-title">{{ T "relatedContents" }}</h2>
2020-08-22 11:20:08 +00:00
<div class="related-contents">
<div class="flex article-list--tile">
{{ range . }}
{{ partial "article-list/tile" (dict "context" . "size" "250x150" "Type" "articleList") }}
2020-08-22 11:20:08 +00:00
{{ end }}
</div>
</div>
{{ end }}
</aside>