blob: fbdc9efa6d60374b425c34fa303aaf5bc7291ac2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<script>
import { _ } from 'svelte-i18n';
export let terms
</script>
<article>
<header>
{$_('title')}
</header>
<main>
{terms}
</main>
<footer>
<a href="/">{$_('refresh')}</a>
</footer>
</article>
|