{{ define "title" }}{{ .Title }} | {{ T .Data.Singular | default (humanize .Data.Singular) }} | {{ .Site.Title }}{{ end }} {{ define "content" }}

{{ $taxonomy := .Data.Singular }} {{ if eq $taxonomy "category" }}  {{ .Title }} {{ else if eq $taxonomy "tag" }}  {{ .Title }} {{ else }} {{ printf "%s - %s" (T $taxonomy | default (humanize $taxonomy)) .Title }} {{ end }}

{{ range (.Paginate (.Pages.GroupByDate "2006")).PageGroups }}

{{ .Key }}

{{ range .Pages }}
{{ .Title }} {{ .Date.Format (.Site.Params.dateFormatToUse | default "01-02") }}
{{ end }} {{ end }} {{ partial "paginator.html" . }}
{{end }}