I have this code here:
{{!< default}}
<div class="ms-index-container">
<div></div>
<div class="ms-postfeed">
{{#foreach posts}}
{{#if featured}}
<a href="{{url}}" class="ms-postcard">
<img src="{{img_url feature_image}}">
<h3>{{title}}</h3>
<p>{{date}}</p>
</a>
{{/if}}
{{/foreach}}
</div>
<div></div>
</div>
And it works fine on my index.hbs, however on any other page it doesnt work. I just get blank nothing as if there are no posts.