diff --git a/layouts/archive/list.html b/layouts/archive/list.html index 4925349..985f6e4 100644 --- a/layouts/archive/list.html +++ b/layouts/archive/list.html @@ -9,40 +9,44 @@ {{ .Content }} -
-
- {{ $filteredPages := .Site.RegularPages }} - {{ range $.Param "notAllowedTypesInArchive" }} - {{ $filteredPages = (where $filteredPages "Type" "!=" (lower .)) }} - {{ end }} - - {{ $paginator := .Paginate ($filteredPages.GroupByDate ($.Param "archiveGroupByDate" | default "2006")) ($.Param "archivePaginate") }} - - {{ range ($paginator).PageGroups }} - {{ .Key }} - - {{ end }} -
-
- {{ partial "pagination/pagination" . }} -
- {{ partial "search/site-search" . }} -
- {{ partial "script/archive-script" . }} -
-{{ end }} \ No newline at end of file + + {{ $paginator := .Paginate ($filteredPages.GroupByDate ($.Param "archiveGroupByDate" | default "2006")) ($.Param "archivePaginate") }} + + {{ if $paginator }} + {{ range ($paginator).PageGroups }} + {{ .Key }} + + {{ end }} + {{ end }} + +
+ {{ partial "pagination/pagination" . }} +
+ {{ partial "search/site-search" . }} +
+ {{ partial "script/archive-script" . }} + +{{ end }} +{{ end }}