owlboard-svelte/src/routes/+page.svelte

20 lines
352 B
Svelte
Raw Normal View History

2023-06-12 19:16:39 +01:00
<script>
2023-06-12 21:50:47 +01:00
import Menu from '../components/header.svelte'
2023-06-12 19:29:33 +01:00
export const prerender = true;
2023-06-12 21:50:47 +01:00
const title = "Test Route"
2023-06-12 19:16:39 +01:00
</script>
2023-06-12 21:50:47 +01:00
<svelte:head>
<title>OwlBoard - {title}</title>
</svelte:head>
<Menu {title} />
<h1>owlboard-svelte</h1>
<p><a href="/public-board?zzz">public-board</a></p>
<style>
h1 {
font-family: urwgothic;
}
</style>