15 lines
452 B
Svelte
15 lines
452 B
Svelte
|
<script lang="ts">
|
||
|
import { version } from '$app/environment';
|
||
|
</script>
|
||
|
|
||
|
<div class="absolute bottom-0 flex z-50 h-8 w-full flex-row items-center gap-3 border-t bg-black/40 backdrop-blur-sm">
|
||
|
<p class="px-4">
|
||
|
Version:
|
||
|
<a
|
||
|
href="https://forgejo.neshweb.net/Neshweb-Sites/main-site/releases/tag/{version}"
|
||
|
class="hover:underline text-secondary"
|
||
|
>
|
||
|
{version}
|
||
|
</a>
|
||
|
</p>
|
||
|
</div>
|