I want to do something like this:
{{#if items}} {{#each items}} {{itemContents}}
I have been evaluating Handlebars for the past few weeks and I had a similar issue. What worked for me was reading the length property and adding the else tag.
{{#if competitions.length}} ...code goes here... {{else}} {{> allGameNotes}} {{/if}