15 lines
328 B
HTML
15 lines
328 B
HTML
|
{{ partial "site_header.html" . }}
|
||
|
{{ partial "page_header.html" . }}
|
||
|
|
||
|
{{ if isset .Site.Params "yearlymicroposts" | and ( .Site.Params.yearlymicroposts ) }}
|
||
|
|
||
|
{{ partial "yearly_grouping.html" . }}
|
||
|
|
||
|
{{ else }}
|
||
|
|
||
|
{{ partial "default_list.html" . }}
|
||
|
|
||
|
{{ end }}
|
||
|
|
||
|
{{ partial "page_footer.html" . }}
|
||
|
{{ partial "site_footer.html" . }}
|