2022-05-02 00:05:34 -04:00
|
|
|
{{ define "main"}}
|
|
|
|
{{ partial "header.html" . }}
|
2022-05-08 16:11:05 -04:00
|
|
|
<main>
|
2022-05-08 18:02:35 -04:00
|
|
|
{{ partial "search.html" . }}
|
|
|
|
<!-- contents -->
|
2023-01-03 21:00:27 -05:00
|
|
|
<div id="feedList" class="block-center">
|
2022-05-08 18:02:35 -04:00
|
|
|
{{ $listPageDateFormat := .Site.Params.listPageDateFormat | default "January, 2006"}}
|
|
|
|
{{ range $index, $value := .Pages.GroupByDate $listPageDateFormat }}
|
|
|
|
{{ range .Pages }}
|
|
|
|
<article class="h-entry">
|
2022-09-23 15:14:43 -04:00
|
|
|
<a href="{{ .Permalink }}"><h2 class='title p-name'>{{ .Title }}</h2></a>
|
2022-05-08 18:02:35 -04:00
|
|
|
{{ .Scratch.Set "noDateUpdate" true }}
|
|
|
|
{{ partial "date.html" . }}
|
2022-05-02 00:05:34 -04:00
|
|
|
<a style="display: none" class="u-url" href="{{ .Permalink }}"></a>
|
2022-05-08 18:02:35 -04:00
|
|
|
<div class="e-content">
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2022-05-08 16:11:05 -04:00
|
|
|
</main>
|
2022-05-02 00:05:34 -04:00
|
|
|
{{ end }}
|