phoebe/web/app/src/routes/+layout.svelte

27 lines
605 B
Svelte
Raw Normal View History

2025-02-05 17:52:14 +00:00
<script lang="ts">
import "../app.scss";
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();
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>