summaryrefslogtreecommitdiff
path: root/themes/blowfish/layouts/partials/related.html
blob: f24f86ca231aae3c4ab3bc76c045b8dc3da0760b (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ if .Params.showRelatedContent | default (.Site.Params.article.showRelatedContent | default false)}}
{{ $related := .Site.RegularPages.Related . | first .Site.Params.article.relatedContentLimit }}
{{ with $related }}
<h2 class="mt-8 text-2xl font-extrabold mb-10">{{ i18n "article.related_articles" | emojify }}</h2>
<section class="w-full grid gap-4 sm:grid-cols-2 md:grid-cols-3">
  {{ range . }}
  {{ partial "article-link/card-related.html" . }}
  {{ end }}
</section>
{{ end }}
{{ end }}