2021-08-18 04:35:54 +00:00
|
|
|
{{ if .Site.Params.homepage.showRecent | default false }}
|
|
|
|
<h2 class="mt-8 text-2xl font-extrabold">{{ i18n "shortcode.recent_articles" | emojify }}</h2>
|
2022-12-11 13:31:04 +00:00
|
|
|
{{ range first .Site.Params.homepage.showRecentItems (.Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) .Site.Params.homepage.showRecentItems).Pages }}
|
2021-08-18 04:35:54 +00:00
|
|
|
{{ partial "article-link.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|