Files
hugo-theme-stack/layouts/_partials/article/components/related-content.html
T

13 lines
467 B
HTML
Raw Normal View History

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