server/frontend/ui/src/components/ExerciceVideo.svelte

26 lines
614 B
Svelte
Raw Normal View History

<script>
import {
Card,
CardBody,
CardHeader,
CardText,
Icon,
ListGroup,
ListGroupItem,
} from 'sveltestrap';
export let uri = "";
</script>
<Card class="border-success mb-2">
2021-08-31 23:47:44 +00:00
<CardHeader class="bg-success text-light">
<Icon name="laptop-fill" />
Solution du défi
</CardHeader>
2021-09-24 16:43:55 +00:00
<CardBody class="text-indent ratio ratio-16x9">
<iframe type="text/html" src="{uri}" class="embed-responsive-item" title="Vidéo de résolution">
Regardez la vidéo de résolution de ce défi&nbsp;: <a href="{uri}">{uri}</a>.
</iframe>
</CardBody>
</Card>