If I increase this parameter how can I solve?
I disabled the posts from the index, but ghost continues to generate the pages as if they were there. I now have over 30 automatically generated blank pages
@giacomosilli the {{#foreach posts}} loop will not affect urls at all, if you comment it then it will result in blank pages because you’re telling the template not to render any of the posts that it’s given.
If you want to restrict which urls are generated or where pages appear then you’ll need to use dynamic routing.
Yes, but the only change I wanted to make to the homepage was the one I explained, I thought the helpers worked here too.
If this is not possible I will follow this guide. Thanks
If you use helpers to hide posts on the first page of your paginated posts list then those posts won’t be listed anywhere. If you want a homepage that is separate to your posts list (it sounds like this is what you are trying to achieve) then you’ll need to use dynamic routing to set up a custom homepage as per that tutorial.