Bookmarks

{$bookmarkList.length} item{$bookmarkList.length !== 1 ? 's' : ''}
{#if !isLoggedIn}
Log in to see your bookmarks.
{:else if $bookmarksLoading}
{:else if resolvedBookmarks.length === 0 && $bookmarkList.length === 0}

No bookmarks yet.

Bookmark notes and articles to find them here.

{:else}
{#each resolvedBookmarks as item (item.id)}
{getKindLabel(item.kind)}
{truncate(item.content)}
{item.pubkey?.slice(0, 10)}... {formatDate(item.created_at)}
{/each} {#each $bookmarkList.filter(t => t[0] === "a") as tag}
Reference
{tag[1]}
{/each}
{/if}