blob: 15780c39e4a9894d15fba836acd824c92cd24615 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<script lang="ts">
import '../app.postcss';
import { AppShell, AppBar, LightSwitch, initializeStores } from '@skeletonlabs/skeleton';
import { pwaInfo } from 'virtual:pwa-info';
$: webManifest = pwaInfo ? pwaInfo.webManifest.linkTag : '';
initializeStores();
</script>
<svelte:head>
<!-- eslint-disable-next-line svelte/no-at-html-tags VitePWA can probably be trusted -->
{@html webManifest}
</svelte:head>
<!-- App Shell -->
<AppShell>
<svelte:fragment slot="header">
<!-- App Bar -->
<AppBar gridColumns="grid-cols-3" slotDefault="place-self-center" slotTrail="place-content-end">
<svelte:fragment slot="lead">
<LightSwitch />
</svelte:fragment>
<a href="#">Zelda: Oracle Password Generator</a>
<svelte:fragment slot="trail">
<a href="#">TODO: SOURCE CODE</a>
</svelte:fragment>
</AppBar>
</svelte:fragment>
<!-- Page Route Content -->
<slot />
</AppShell>
|