{{ define "title" }}{{ .Title }} ยท {{ .Site.Title }}{{ end }}
{{ define "content"}}
{{ $paginator := .Paginate (where .Data.Pages.ByDate.Reverse "Type" "post") .Site.Params.archivePaginate }}
{{ if not $paginator.HasPrev }}
{{ if eq .Data.Plural "tags" }}
{{ .Title }}
{{ else if eq .Data.Plural "categories" }}
{{ .Title }}
{{ end }}
{{ end }}
{{ range $paginator.Pages }}
{{ .Date.Format (.Site.Params.dateFormatToUse | default "2006-01-02") }}
{{ .Title }}
{{ end }}
{{ end }}