diff --git a/src/routes/feed/+page.svelte b/src/routes/feed/+page.svelte index ee2d69f..30960a4 100644 --- a/src/routes/feed/+page.svelte +++ b/src/routes/feed/+page.svelte @@ -38,21 +38,28 @@ subtitle="subtitle missing" /> - {@render pageButtons(data.currentPage)} -

Welcome to my (new) art feed! It is heavily inspired by DeathSurplus' art blog – definitely go check out his page!

This page is intended to be a contrasting companion to the projects page; I'll use this page for smaller things that don't fit the dedicated-page-format.

+ + {@render pageButtons(data.currentPage)} {#each data.feedEntries as entry}

{entry.title}

{entry.subtitle}

{entry.date}

+ {#if entry.images && entry.images.length > 0} + {#each entry.images as i, index} + {entry.imageAlts[index]} + {/each} + {/if} {/each} + {@render pageButtons(data.currentPage)} +