From a4259cc76f0fc246fa3c9ee932aeb330e1f62fa3 Mon Sep 17 00:00:00 2001 From: kballou Date: Fri, 11 Nov 2016 12:32:00 -0700 Subject: Display all posts, remove limit There's not enough to sink into paging, and there's just enough to be over 10. --- blag/layouts/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blag/layouts/index.html b/blag/layouts/index.html index 0e5937d..aa4f49d 100644 --- a/blag/layouts/index.html +++ b/blag/layouts/index.html @@ -1,7 +1,7 @@ {{ partial "header.html" . }} {{ partial "subheader.html" . }} -{{ range first 10 .Data.Pages }} +{{ range .Data.Pages }} {{ if eq .Section "blog" }} {{ .Render "summary" }} {{ end }} -- cgit v1.2.1