holy/layouts/index.html

11 lines
320 B
HTML
Raw Normal View History

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 -}}
{{- 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 }}