{#if allTags.length > 0}
{#each allTags as tag}
(activeTag = activeTag === tag ? null : tag)} > {tag}
{/each}
{/if}
{#if filtered.length === 0}
No results.
{:else} {#each filtered as sheet}
{sheet.title}
{#if sheet.description}
{sheet.description}
{/if}
{#if sheet.tags && sheet.tags.length > 0}
{#each sheet.tags as tag}
{tag}
{/each}
{/if}
{/each} {/if}