+ {#if data.user}
+
Welcome @{data.user.name}!
+
Enjoy some Shakespeare!
+ {/if}
+ {#await data.quote}
+
+ {:then quote}
+
+
+ "
+ {#each quote as link, i}
+ {#if i === 0}
+ {link}
+ {:else}
+
{link}
+ {/if}
+ {:else}
+ There was an error fetching the quote.
+ {/each}
+ "
+
+
+ {/await}
+
+