11ty / eleventy-base-blog

A starter repository for a blog web site using the Eleventy static site generator.
https://eleventy-base-blog.netlify.app/
MIT License
1.2k stars 609 forks source link

How can I show the 10 latest posts instead of 3 in the home page? #170

Closed verlok closed 5 months ago

verlok commented 5 months ago

Hello, how can I show the 10 latest posts instead of 3 in the home page?

I couldn't find the number 3, neither in the eleventy config file, nor in the home page template.

Thanks

bobmonsour commented 5 months ago

On line 6 of this file, change the 3 to a 10.

https://github.com/11ty/eleventy-base-blog/blob/main/content/index.njk

verlok commented 5 months ago

Ok I must admit I had searched a little bit in a hurry 😓

This is the answer:

numberOfLatestPostsToShow: 3

Thanks @bobmonsour for pointing out.