diff --git a/frontend/src/routes/more/+page.svelte b/frontend/src/routes/more/+page.svelte index b1f1945..f434c82 100644 --- a/frontend/src/routes/more/+page.svelte +++ b/frontend/src/routes/more/+page.svelte @@ -12,28 +12,32 @@
{#each data.categorySections as section (section.category.id)} - {#if section.articles.length > 0} -
- {section.category.name} -
+
+ {section.category.name} +
+ {#if section.articles.length > 0} {#each section.articles as article (article.id)} {/each} -
-
- {/if} + {:else} +
No stories here yet.
+ {/if} +
+
{/each} {#each data.eventSections as section (section.event.id)} - {#if section.articles.length > 0} -
- {section.event.name} -
+
+ {section.event.name} +
+ {#if section.articles.length > 0} {#each section.articles as article (article.id)} {/each} -
-
- {/if} + {:else} +
No stories here yet.
+ {/if} +
+
{/each}
@@ -69,4 +73,9 @@ .list { max-width: 720px; } + .empty { + font-size: 12px; + color: var(--text-muted); + padding: 4px 0; + }