Updates to the blog list so far (I've lost track)

This commit is contained in:
Eryn Wells 2023-09-24 08:46:30 -07:00
parent d6e5c2a978
commit 42dc062147
2 changed files with 19 additions and 16 deletions

View file

@ -4,14 +4,14 @@
{{ define "main" }}
{{- range .Pages.ByDate.GroupByDate "2006" -}}
<h5>{{ .Key | title }}</h5>
<ul>
{{- range .Pages -}}
{{- if or (not .Draft) (not hugo.IsProduction) -}}
{{- .Render "li_grid_with_date" -}}
<h1 class="date">{{ .Key | title }}</h1>
<ul>
{{- range .Pages -}}
{{- if or (not .Draft) (not hugo.IsProduction) -}}
{{- .Render "li_grid_with_date" -}}
{{- end -}}
{{- end -}}
{{- end -}}
</ul>
</ul>
{{- end -}}
{{ end }}