mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-14 19:26:40 +02:00
16 lines
421 B
HTML
16 lines
421 B
HTML
{{ partial "header.html" . }}
|
|
<div class="section main">
|
|
<div class="container">
|
|
<div class="content">
|
|
<div class="page-heading">Posts</div>
|
|
{{ range .Data.Pages.ByPublishDate }}
|
|
{{ if eq .Section "posts" }}
|
|
{{ partial "li.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
|