diff --git a/frontend/src/routes/adventures/[id]/+page.svelte b/frontend/src/routes/adventures/[id]/+page.svelte index b055d43..6c01956 100644 --- a/frontend/src/routes/adventures/[id]/+page.svelte +++ b/frontend/src/routes/adventures/[id]/+page.svelte @@ -224,17 +224,59 @@ {#if adventure.images.length > 1} -
- {#each adventure.images as _, i} +
+ +
- {/each} + +
+ {currentSlide + 1} / {adventure.images.length} +
+ + +
+ + + {#if adventure.images.length <= 12} + +
+ {#each adventure.images as _, i} + + {/each} +
+ {:else} + +
+
+
+
+ {/if}
{/if}