|
|
@ -1,10 +1,12 @@
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import { page, preloading } from '@sapper/app';
|
|
|
|
import { stores } from '@sapper/app';
|
|
|
|
import InlineSvg from '../components/InlineSvg.svelte';
|
|
|
|
import InlineSvg from '../components/InlineSvg.svelte';
|
|
|
|
import PreloadingIndicator from '../components/PreloadingIndicator.svelte';
|
|
|
|
import PreloadingIndicator from '../components/PreloadingIndicator.svelte';
|
|
|
|
import Nav from '../components/TopNav.svelte';
|
|
|
|
import Nav from '../components/TopNav.svelte';
|
|
|
|
|
|
|
|
|
|
|
|
export let segment;
|
|
|
|
export let segment;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const { preloading, page } = stores();
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
{#if $preloading}
|
|
|
|
{#if $preloading}
|
|
|
|