{#if list?.length}
{title}
{#if list.length > 4}
{showMore ? 'Show Less' : 'Show More'}
{/if}
{#each list.slice(0, showMore ? 100 : 4) as item}
{/each}
{/if}