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/+page.svelte

29 lines
574 B
Svelte

<script>
import {
Col,
Container,
Row,
} from 'sveltestrap';
import { videos } from '$lib/stores/videos.js';
import VideoThumb from '$lib/components/VideoThumb.svelte';
</script>
<Container fluid class="flex-fill my-3">
<Row>
<Col xs="auto">
<h3>Toutes les vidéos</h3>
</Col>
<Col>
<hr>
</Col>
</Row>
<Row cols={{sm: 2, md: 3, lg: 4}}>
{#each $videos as video (video.id)}
<Col>
<VideoThumb {video} />
</Col>
{/each}
</Row>
</Container>