Update recent-articles.html

This commit is contained in:
Gautier
2022-12-11 14:31:04 +01:00
committed by James Panther
parent 8f6202aa37
commit 42cdeb24e8
+1 -1
View File
@@ -1,6 +1,6 @@
{{ if .Site.Params.homepage.showRecent | default false }}
<h2 class="mt-8 text-2xl font-extrabold">{{ i18n "shortcode.recent_articles" | emojify }}</h2>
{{ range first 5 (.Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) 5).Pages }}
{{ range first .Site.Params.homepage.showRecentItems (.Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) .Site.Params.homepage.showRecentItems).Pages }}
{{ partial "article-link.html" . }}
{{ end }}
{{ end }}