homepage: fix rendering with <5 posts
1 file changed, 1 insertion(+), 1 deletion(-)
changed files
M domain/content/templates/homepage.go → domain/content/templates/homepage.go
@@ -27,7 +27,7 @@ content, ), Section( H2(g.Text("Latest Posts")), - list(vars.Posts[0:5]), + list(vars.Posts[0:min(len(vars.Posts), 5)]), ), Section( H2(g.Text("Elsewhere on the Internet")),