+<script lang="ts">
+ import { _ } from 'svelte-i18n';
+ import { getTag } from '$lib/stores/tags';
+ import ErrorBlock from '$lib/components/error_block/error_block.svelte';
+ import Loader from '$lib/components/loader/loader.svelte';
+ import Tag from '$lib/components/tag/tag.svelte';
+ export let id: string;
+
+ $: store = getTag(id);
+ $: tag = $store.data;
+</script>
+
+<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}