holy/layouts/index.html
fernvenue 6c3be21945
fix: unclosed action (#6)
* Update index.html
* Update li.html
2022-12-06 17:40:14 +08:00

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