{#if error}
Album Not Found
{error}
{:else if album}
{album.title}
{#if album.description}
{album.description}
{/if}
{#if album.date}
📅 {formatDate(album.date)}
{/if} {#if album.location}
📍 {album.location}
{/if}
📷 {album.photos?.length || 0} photo{(album.photos?.length || 0) !== 1 ? 's' : ''}
{#if photoItems.length > 0}
{:else}
This album doesn't contain any photos yet.
{/if}
{/if}