{#if hasPeople}

People

View All
{#if MAX_ITEMS} {#each people as person (person.id)}

{person.name}

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

Places

{#each places as item (item.data.id)}
{item.value}
{/each}
{/if} {#if things.length > 0}

Things

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