mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-02-02 03:22:33 -06:00
10 lines
504 B
HTML
10 lines
504 B
HTML
{{ $recentArticles := 5 }}
|
|
{{ if .Site.Params.homepage.showRecent | default false }}
|
|
{{ if index .Site.Params.homepage "showRecentItems" }}
|
|
{{ $recentArticles = .Site.Params.homepage.showRecentItems }}
|
|
{{ end }}
|
|
<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 }}
|
|
{{ partial "article-link.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|