Create website

Create website

{ return async ({ update }) => { await update(); window.location.hash = "!"; }; }} >
{#if data.totalWebsiteCount > 0}

All websites

{#each data.websites as { id, content_type, title, created_at }}

{title}

  • Type: {content_type}
  • Created at:

Update website

{ return async ({ update }) => { await update({ reset: false }); window.location.hash = "!"; }; }} >

Delete website

Caution! Deleting this website will irretrievably erase all data.

{ return async ({ update }) => { await update(); window.location.hash = "!"; }; }} >
{/each}
{/if}