We're looking to display blog posts on the homepage using Stencil/Handlebars. So far, I've tried the code below to no avail:
<ul>
{{#each blog}}
<li><a href="{{url}}">{{title}}</a></li>
{{/each}}
</ul>
AND
<ul>
{{#each blog.post}}
<li><a href="{{url}}">{{title}}</a></li>
{{/each}}
</ul>
Is it possible that the Blog object is not available on the homepage? Seems a little silly not to be able to use the Blog object wherever I want...?
Thanks in advance!