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