blowfish/layouts/partials/recent-articles.html

11 lines
504 B
HTML
Raw Normal View History

{{ $recentArticles := 5 }}
2022-09-10 14:05:37 -05:00
{{ if .Site.Params.homepage.showRecent | default false }}
{{ if index .Site.Params.homepage "showRecentItems" }}
{{ $recentArticles = .Site.Params.homepage.showRecentItems }}
{{ end }}
2022-09-11 12:42:54 -05:00
<h2 class="mt-8 text-2xl font-extrabold mb-10">{{ i18n "shortcode.recent_articles" | emojify }}</h2>
{{ range first $recentArticles (.Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections)).Pages }}
2022-09-10 14:05:37 -05:00
{{ partial "article-link.html" . }}
{{ end }}
{{ end }}