{{- define "content" -}} {{- $group_by_year := .Site.Params.list_layout.enable_group_by_year | default true -}} {{- $show_date := .Site.Params.list_layout.enable_show_date | default true -}} {{- $pagination := .Site.Params.list_layout.enable_pagination | default false -}} {{- $pages := .Pages -}} {{- if and $pagination $group_by_year -}} {{ $pages = (.Paginate (.Pages.GroupByPublishDate "2006")).PageGroups }} {{- else if and $pagination (not $group_by_year) -}} {{ $pages = .Paginator.Pages }} {{- else if and (not $pagination) $group_by_year -}} {{ $pages = .Pages.GroupByPublishDate "2006" }} {{- end -}}