erynwells.me/layouts/blog/list.html

19 lines
435 B
HTML
Raw Normal View History

2022-09-11 10:40:25 -07:00
{{ define "header" }}
{{ partial "header.html" . }}
{{ end }}
{{ define "main" }}
{{- range .Pages.ByDate.GroupByDate "2006" -}}
<h1 class="date"><a id="{{ .Key }}">{{ .Key | title }}</a></h1>
{{- range .Pages -}}
{{- if or (not .Draft) (not hugo.IsProduction) -}}
{{- .Render "li_grid_with_date" -}}
2022-10-14 15:02:18 -07:00
{{- end -}}
{{- end -}}
{{- end -}}
2022-09-11 10:40:25 -07:00
{{ end }}
{{ define "footer" }}
{{ partial "footer.html" . }}
{{ end }}