gohugo-theme-ananke/layouts/partials/all-posts-list.html
Emiliano Tortorella 69d5a3c783 google font added.
2019-01-29 18:51:39 -05:00

35 lines
821 B
HTML

{{ $n_posts := $.Param "recent_posts_number" | default 3 }}
<div >
<h1 class="flex-none" style="font-family: 'Krub', sans-serif;">
Últimos posts:
</h1>
<section class="w-100 mw8 center">
{{ range (first $n_posts .Pages) }}
<div class="relative w-100 mb4">
{{ partial "summary-with-image.html" . }}
</div>
{{ end }}
</section>
<section class="w-100" style="font-family: 'Krub', sans-serif;">
<h1 class="f3 dib">
Más posts en nuestras secciones:
</h1>
{{ range .Sections }}
{{ $post_count := len (.Pages) }}
{{ if ge $post_count 1 }}
<h2 class="f4 fw4 mb4 dib ml3">
<a href="{{ .URL }}" class="link black dim">
{{ .Name }}
</a>
</h2>
{{ end }}
{{ end }}
</section>
</div>