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