Display blog posts in reverse order by date.

This is a minor style tweak.

Signed-off-by: Matt Moyer <moyerm@vmware.com>
This commit is contained in:
Matt Moyer 2021-04-05 10:53:44 -05:00
parent 623830bf1f
commit 88c4335b4b
No known key found for this signature in database
GPG Key ID: EAE88AD172C5AE2D
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
</div>
<div class="wrapper blog landing">
<div class="grid three">
{{ range (.Paginator 9).Pages.ByDate }}
{{ range (.Paginator 9).Pages.ByDate.Reverse }}
{{ partial "blog-post-card.html" . }}
{{ end }}
</div>