mirror of
https://github.com/theNewDynamic/gohugo-theme-ananke.git
synced 2025-06-08 09:12:47 +00:00
17 lines
368 B
HTML
17 lines
368 B
HTML
{{ $n_posts := $.Param "recent_posts_number" | default 3 }}
|
|
<div class="pa3 pa4-ns w-100 w-70-ns center">
|
|
<h1 class="flex-none">
|
|
Últimos posts:
|
|
</h1>
|
|
|
|
<section class="w-100 mw8">
|
|
|
|
{{ range (first $n_posts .Pages) }}
|
|
<div class="relative w-100 mb4">
|
|
{{ partial "summary-with-image.html" . }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
</section>
|
|
</div>
|