mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 11:46:41 +02:00

The months are displayed reverse chronologically, but the posts for that month are displayed chronologically. It seems more intuitive to have posts under each month also to be sorted reverse chronologically.
20 lines
638 B
HTML
20 lines
638 B
HTML
{{ partial "header.html" . }}
|
|
<div class="main column">
|
|
<div class="container">
|
|
<div class="content">
|
|
<div class="posts">
|
|
<div class="page-heading">Blog</div>
|
|
<ul>
|
|
{{ range .Data.Pages.GroupByDate "Jan, 2006" "desc"}}
|
|
<li class="groupby">{{ .Key }}</li>
|
|
{{ range sort .Pages "Date" "desc" }}
|
|
{{ partial "li.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ partial "footer.html" . }}
|