blob: f24c54b86efc624347a84e94939aca914f089c1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<script lang="ts">
import { _ } from 'svelte-i18n';
import LanguageSelector from '$lib/components/language_selector/language_selector.svelte';
const licenseUrl = 'https://gitlab.com/rbdr/forum/';
</script>
<footer
class="col-start-1 col-span-12 border-t border-t-black border-solid"
title={$_('footer.title')}
>
<ul class="py-2">
<li class="inline m-1">{@html $_('footer.license', { values: { licenseUrl } })}</li>
<li class="inline m-1">{$_('footer.choose_language')}: <LanguageSelector /></li>
</ul>
</footer>
|