{#if people.length > 0}

People

{#if data.people.length > MAX_ITEMS} View All {/if}
{#each people as person (person.id)}

{person.name}

{/each}
{/if} {#if places.length > 0}

Places

{#each places as item}
{item.value}
{/each}
{/if} {#if things.length > 0}

Things

{#each things as item}
{item.value}
{/each}
{/if}