{{- partial "head.html" . -}}
{{- partial "header.html" . -}}
{{- block "archives-main" . }}{{- end }}
{{- partial "footer.html" . -}} {{- partial "backtotop.html" . -}} {{- block "script" . }}{{- end }} {{ define "archives-main" }}
{{ $count := len (where (where .Site.Pages "Type" "post") "Kind" "page") }}

{{ i18n "archives" (dict "Count" $count) }}

{{ range (where (where .Site.Pages "Type" "post") "Kind" "page").GroupByDate "2006" }}

{{ .Key }}

    {{ range .Pages }}
  • {{ .Date.Format "2006/01/02" }} {{ .Title }}
  • {{ end }}
{{ end }}
{{ end }}