{{#post}}
{{#if content}}
<div class="container page-header-bottom-contents">
<div class="row">
<div class="col-md-10 mx-auto">
{{ content }}
</div>
</div>
</div>
{{/if}}
{{/post}}
I want this whole div will render only when there will be content on page, unfortunately when I wrap these via {{#if}} .. {{/if}}
no content renders, even when there are content exits.
I know , maybe I have some misconception here. Please make me correct.