mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 19:56:41 +02:00
18 lines
547 B
HTML
18 lines
547 B
HTML
{{ partial "header.html" . }}
|
|
<section class="main">
|
|
<div class="container">
|
|
<div class="content">
|
|
<div class="page-heading">Blog</div>
|
|
<ul>
|
|
{{ range .Data.Pages.GroupByDate "Jan, 2006" "desc"}}
|
|
<li class="groupby">{{ .Key }}</li>
|
|
{{ range .Pages.ByPublishDate }}
|
|
{{ partial "li.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ partial "footer.html" . }}
|