ContainerImage.Pinniped/site/themes/pinniped/layouts/_default/posts.html
Matt Moyer 88c4335b4b
Display blog posts in reverse order by date.
This is a minor style tweak.

Signed-off-by: Matt Moyer <moyerm@vmware.com>
2021-04-05 10:54:00 -05:00

19 lines
412 B
HTML

{{ define "main" }}
<main>
<div class="hero subpage">
<div class="wrapper">
<h2>Pinniped blog</h2>
</div>
</div>
<div class="wrapper blog landing">
<div class="grid three">
{{ range (.Paginator 9).Pages.ByDate.Reverse }}
{{ partial "blog-post-card.html" . }}
{{ end }}
</div>
{{ partial "pagination.html" . }}
</div>
</main>
{{ partial "getting-started" . }}
{{ end }}