2022-05-29 12:52:49 -04:00
|
|
|
{{ define "main"}}
|
|
|
|
{{ partial "header.html" . }}
|
|
|
|
<main>
|
|
|
|
{{ partial "search.html" . }}
|
|
|
|
<!-- contents -->
|
2023-01-03 21:00:27 -05:00
|
|
|
<div id="feedList" class="block-center">
|
2022-05-29 12:52:49 -04:00
|
|
|
{{ $listPageDateFormat := .Site.Params.listPageDateFormat | default "January, 2006"}}
|
|
|
|
{{ range $index, $value := .Pages.GroupByDate $listPageDateFormat }}
|
|
|
|
{{ range .Pages }}
|
|
|
|
<article class="h-entry">
|
|
|
|
<h2 class='title p-name'><a class="u-url" href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
|
|
|
{{ .Scratch.Set "noDateUpdate" true }}
|
|
|
|
{{ partial "date.html" . }}
|
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
{{ end }}
|