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/routes/t/[id].svelte | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/routes/t/[id].svelte (limited to 'src/routes/t') diff --git a/src/routes/t/[id].svelte b/src/routes/t/[id].svelte new file mode 100644 index 0000000..9d3ab9e --- /dev/null +++ b/src/routes/t/[id].svelte @@ -0,0 +1,48 @@ + + + + + + {#if $store.loading} + {$_('loader.message')}, {$_('topic.title')} + {/if} + {#if $store.error} + {$_('error.generic.title')}, {$_('topic.title')} + {/if} + {#if topic} + {topic.title}, {$_('topic.title')} + {/if} + + +{#if $store.loading} + +{/if} +{#if $store.error} + +{/if} +{#if topic} + +{/if} -- cgit