Browse
{ if (e.key === 'Enter') applyFilter(); }} />
Filter
{#if filterTag}
{ filterTag = ''; applyFilter(); }}>Clear
{/if}
{#if loading}
Loading...
{:else if error}
{error}
{:else if images.length === 0} {#if filterTag}
No results found for tag “{filterTag}”.
{:else}
No images yet.
Upload one!
{/if} {:else}
{#each images as img (img.id)}
{#if img.thumbnail_path}
{:else}
{img.mime_type}
{/if}
{img.filename}
{img.tags.join(', ')}
{/each}
Previous
Page {page} of {Math.ceil(total / perPage)} ({total} total)
= total}>Next
{/if}