mirror of https://github.com/sveltejs/svelte
20 lines
405 B
20 lines
405 B
<script>
|
|
let cats = [
|
|
{ id: 'J---aiyznGQ', name: 'Keyboard Cat' },
|
|
{ id: 'z_AbfPXTKms', name: 'Maru' },
|
|
{ id: 'OUtn3pvWmpg', name: 'Henri The Existential Cat' }
|
|
];
|
|
</script>
|
|
|
|
<h1>The Famous Cats of YouTube</h1>
|
|
|
|
<ul>
|
|
<!-- open each block -->
|
|
<li>
|
|
<a target="_blank" href="https://www.youtube.com/watch?v={cat.id}" rel="noreferrer">
|
|
{cat.name}
|
|
</a>
|
|
</li>
|
|
<!-- close each block -->
|
|
</ul>
|