This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
maatma-videos/src/routes/+layout.svelte

36 lines
898 B
Svelte
Raw Permalink Normal View History

2022-04-17 09:45:09 +00:00
<script>
2022-12-15 11:51:07 +00:00
import { videos } from '$lib/stores/videos.js';
2022-04-17 09:45:09 +00:00
import "bootstrap-icons/font/bootstrap-icons.css";
import {
Container,
Styles,
2024-01-05 09:34:53 +00:00
} from '@sveltestrap/sveltestrap';
2022-04-17 09:45:09 +00:00
2022-12-15 11:51:07 +00:00
import Header from '$lib/components/Header.svelte';
2022-04-17 09:45:09 +00:00
2022-12-15 11:51:07 +00:00
export let data;
2022-04-17 09:45:09 +00:00
</script>
<svelte:head>
<title>Maatma Videos</title>
</svelte:head>
<Styles />
<Header />
<Container fluid class="flex-fill d-flex flex-column justify-content-center pb-4 pb-lg-2">
2022-12-15 11:51:07 +00:00
{#if data.error !== null}
<Container class="border border-2 border-info text-center py-3 display-6 mb-5">
Une erreur s'est produite&nbsp;: {data.error}
</Container>
{:else if $videos === null}
2022-04-17 09:45:09 +00:00
<Container class="border border-2 border-info text-center py-3 display-6 mb-5">
Chargement de la liste des vidéos&hellip;
</Container>
{:else}
<slot></slot>
{/if}
</Container>