mirror of https://github.com/jpanther/congo.git
7 lines
322 B
HTML
7 lines
322 B
HTML
{{ 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)).Pages }}
|
|
{{ partial "article-link.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|