{#if event.kind !== 0 && getEventTitle(event)}

{getEventTitle(event)}

{/if}
{#if toNpub(event.pubkey)} Author: {@render userBadge(toNpub(event.pubkey) as string, profile?.display_name || event.pubkey)} {:else} Author: {profile?.display_name || event.pubkey} {/if}
Kind: {event.kind} ({getEventTypeDisplay(event)})
{#if getEventSummary(event)}
Summary:

{getEventSummary(event)}

{/if} {#if getEventHashtags(event).length}
Tags:
{#each getEventHashtags(event) as tag} #{tag} {/each}
{/if}
{#if event.kind !== 0} Content:
{@html showFullContent ? parsedContent : contentPreview} {#if !showFullContent && parsedContent.length > 250} {/if}
{/if}
{#if event.kind === 0} {/if} {#if event.tags && event.tags.length}
Event Tags:
{#each event.tags as tag} {@html renderTag(tag)} {/each}
{/if}
Show Raw Event JSON
      {JSON.stringify(event.rawEvent(), null, 2)}