From 58f7d52150456713d3132408668a92d0f6f3d084 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Thu, 15 Apr 2021 23:06:26 +0200 Subject: Port to sveltekit --- src/components/tag/tag.svelte | 32 +++++++++----------------------- 1 file changed, 9 insertions(+), 23 deletions(-) (limited to 'src/components/tag') diff --git a/src/components/tag/tag.svelte b/src/components/tag/tag.svelte index a14cd19..954cdaa 100644 --- a/src/components/tag/tag.svelte +++ b/src/components/tag/tag.svelte @@ -1,27 +1,13 @@ -{#if $store.loading} - -{/if} -{#if $store.error} - -{/if} -{#if tag} -

{$_('tag.title')} {tag.id}

-
    - {#each tag.topics as topic} - - {/each} -
-{/if} +

{$_('tag.title')}: {tag.id}

+
    + {#each tag.topics as topic} + + {/each} +
-- cgit