+<script context="module">
+ export const load = ({
+ page: {
+ params: { id }
+ }
+ }) => ({ props: { id } });
+</script>
+
<script>
- export async function load(ctx) {
- let id = ctx.page.params.id
- return { props: { id }}
- }
+ import { _ } from 'svelte-i18n';
+ import { getTag } from '$/stores/tags';
+ import ErrorBlock from '$/components/error_block/error_block.svelte';
+ import Loader from '$/components/loader/loader.svelte';
+ import Tag from '$/components/tag/tag.svelte';
+ export let id;
+
+ $: store = getTag(id);
+ $: tag = $store.data;
</script>
-<h1>Tag Index.</h1>
-<p>This component lists topics for tag with id: {id}</p>
+<svelte:head>
+ <title>{id}, {$_('tag.title')}</title>
+</svelte:head>
+
+{#if $store.loading}
+ <Loader />
+{/if}
+{#if $store.error}
+ <ErrorBlock message={$_('tag.error.unavailable')} />
+{/if}
+{#if tag}
+ <Tag {tag} />
+{/if}