13 lines
355 B
HTML
13 lines
355 B
HTML
{{ define "main" }}
|
|
<div class="d:flex flex:col">
|
|
{{- partial "prose.html" . -}}
|
|
|
|
<h2 class="my:1em">Posts</h2>
|
|
|
|
{{- range where site.RegularPages "Type" "in" site.Params.mainSections -}}
|
|
|
|
{{- partial "li.html" ( dict "url" .Permalink "title" .Title "subTitle" (.Date | time.Format (":date_medium")) ) -}}
|
|
{{- end -}}
|
|
</div>
|
|
{{ end }}
|