+ {{ $nbPosts := len (where .Data.Pages "Section" "blog") }}
+ {{ if gt $nbPosts 0 }}
+
Latest posts
+
+ {{ range (first .Site.Params.latestpostcount (where .Pages "Section" "blog")).GroupByDate "Jan, 2006" "desc" }}
+ - {{ .Key }}
+ {{ range .Pages.ByPublishDate }}
+ {{ partial "li.html" . }}
+ {{ end }}
+ {{ end }}
+
+
+ {{ if gt $nbPosts .Site.Params.latestpostcount }}
+
See more ...
{{ end }}
{{ end }}
-
-
- {{ if gt $nbPosts .Site.Params.latestpostcount }}
-
See more ...
- {{ end }}
+
{{ end }}
-