2025-02-05 17:52:14 +00:00
|
|
|
<script lang="ts">
|
2023-08-09 00:26:37 +07:00
|
|
|
import "../app.scss";
|
2025-02-21 20:51:15 +00:00
|
|
|
import Navbar from "$lib/components/ui/Navbar.svelte";
|
2025-02-05 17:52:14 +00:00
|
|
|
interface Props {
|
|
|
|
children?: import('svelte').Snippet;
|
|
|
|
}
|
|
|
|
|
|
|
|
let { children }: Props = $props();
|
2023-08-09 00:26:37 +07:00
|
|
|
|
|
|
|
export const ssr = false;
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<svelte:head>
|
|
|
|
<title>Shioriko</title>
|
|
|
|
</svelte:head>
|
|
|
|
|
|
|
|
<Navbar />
|
|
|
|
|
2025-02-05 17:52:14 +00:00
|
|
|
{@render children?.()}
|
2025-02-22 13:12:22 +00:00
|
|
|
|
|
|
|
<footer class="footer">
|
|
|
|
<div class="content has-text-centered">
|
|
|
|
<p>
|
2025-02-22 14:37:20 +00:00
|
|
|
<strong><a href="https://github.com/Damillora/Shioriko">shioriko</a></strong>: a booru-style image gallery written in Go and Svelte
|
2025-02-22 13:12:22 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</footer>
|