mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-02-02 11:32:30 -06:00
11 lines
No EOL
448 B
HTML
11 lines
No EOL
448 B
HTML
{{ $recentArticles := 5 }}
|
|
{{ $recentArticles = .Site.Params.homepage.showRecentItems }}
|
|
|
|
<section
|
|
class="relative w-screen max-w-[1600px] grid gap-4 sm:grid-cols-2 md:grid-cols-3 xl:grid-cols-4 2xl:grid-cols-5"
|
|
style="left: calc(max(-50vw,-800px) + 50%);">
|
|
{{ range first $recentArticles (.Paginate (where .Site.RegularPages "Type" "in"
|
|
.Site.Params.mainSections)).Pages }}
|
|
{{ partial "article-link-card.html" . }}
|
|
{{ end }}
|
|
</section> |