How can I display more than 5 posts in the loop on the homepage of a theme?
I have the standard loop:
{{#foreach posts}}
<h2 class="post-title">{{{title}}}</h2>
{{/foreach}}
I have 7 posts in total, but can only display 5 per page, it seems to forcibly paginate at 5 posts.
Is there any way I can get around this?