blowfish/layouts/partials/recent-articles.html

7 lines
328 B
HTML
Raw Normal View History

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