2022-04-05 00:20:04 +08:00
|
|
|
{{ define "main" }}
|
2022-05-09 18:41:08 +08:00
|
|
|
<div class="d:flex flex:col">
|
|
|
|
{{- partial "prose.html" . -}}
|
|
|
|
|
|
|
|
{{- range where site.RegularPages "Type" "in" site.Params.mainSections -}}
|
|
|
|
|
2022-12-06 17:40:14 +08:00
|
|
|
{{- partial "li.html" ( dict "url" .Permalink "title" .Title "subTitle" (.Date | time.Format (":date_medium")) ) -}}
|
2022-05-09 18:41:08 +08:00
|
|
|
{{- end -}}
|
|
|
|
</div>
|
2022-11-26 20:49:24 -05:00
|
|
|
{{ end }}
|