20 lines
437 B
HTML
20 lines
437 B
HTML
{{ define "header" }}
|
|
{{ partial "header.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
{{- range .Pages.ByDate.GroupByDate "2006" -}}
|
|
<h1 class="date">{{ .Key | title }}</h1>
|
|
<ul>
|
|
{{- range .Pages -}}
|
|
{{- if or (not .Draft) (not hugo.IsProduction) -}}
|
|
{{- .Render "li_grid_with_date" -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
</ul>
|
|
{{- end -}}
|
|
{{ end }}
|
|
|
|
{{ define "footer" }}
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|