mirror of
https://github.com/Damillora/phoebe.git
synced 2025-03-10 22:17:21 +00:00
27 lines
605 B
Svelte
27 lines
605 B
Svelte
<script lang="ts">
|
|
import "../app.scss";
|
|
import Navbar from "$lib/components/ui/Navbar.svelte";
|
|
interface Props {
|
|
children?: import('svelte').Snippet;
|
|
}
|
|
|
|
let { children }: Props = $props();
|
|
|
|
export const ssr = false;
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>Shioriko</title>
|
|
</svelte:head>
|
|
|
|
<Navbar />
|
|
|
|
{@render children?.()}
|
|
|
|
<footer class="footer">
|
|
<div class="content has-text-centered">
|
|
<p>
|
|
<strong><a href="https://github.com/Damillora/Shioriko">shioriko</a></strong>: a booru-style image gallery written in Go and Svelte
|
|
</p>
|
|
</div>
|
|
</footer> |