-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a7ab2e
commit 9042deb
Showing
3 changed files
with
47 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
{ | ||
"events": [ | ||
{ | ||
"name": "Rust 101", | ||
"description": "Un taller de introducción al lenguaje de programación que te convertirá en un gei", | ||
"date": "15/08/2024", | ||
"time": "11:00 - 12:00", | ||
"place": "Lab Fiec 12A, ESPOL" | ||
}, | ||
{ | ||
"name": "Rust 101", | ||
"description": "Un taller de introducción al lenguaje de programación que te convertirá en un gei", | ||
"date": "15/08/2024", | ||
"time": "11:00 - 12:00", | ||
"place": "Lab Fiec 12A, ESPOL" | ||
}, | ||
{ | ||
"name": "Rust 101", | ||
"description": "Un taller de introducción al lenguaje de programación que te convertirá en un gei", | ||
"date": "15/08/2024", | ||
"time": "11:00 - 12:00", | ||
"place": "Lab Fiec 12A, ESPOL" | ||
} | ||
] | ||
} | ||
"events": [ | ||
{ | ||
"name": "Rust 101", | ||
"description": "Un taller de introducción al lenguaje de programación que te convertirá en un gei", | ||
"date": "15/08/2024", | ||
"time": "11:00 - 12:00", | ||
"place": "Lab Fiec 12A, ESPOL" | ||
}, | ||
{ | ||
"name": "Rust 101", | ||
"description": "Un taller de introducción al lenguaje de programación que te convertirá en un gei", | ||
"date": "15/08/2024", | ||
"time": "11:00 - 12:00", | ||
"place": "Lab Fiec 12A, ESPOL" | ||
}, | ||
{ | ||
"name": "Rust 101", | ||
"description": "Un taller de introducción al lenguaje de programación que te convertirá en un gei", | ||
"date": "15/08/2024", | ||
"time": "11:00 - 12:00", | ||
"place": "Lab Fiec 12A, ESPOL" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
<script lang="ts"> | ||
import Event from "$lib/components/Event.svelte"; | ||
import Event from "$lib/components/Event.svelte"; | ||
let { data } = $props(); | ||
</script> | ||
|
||
<div class="px-8 flex flex-col items-center"> | ||
<div class="flex flex-col items-center px-8"> | ||
{#each data.events as event} | ||
<Event | ||
name={event.name} | ||
description={event.description} | ||
date={event.date} | ||
time={event.time} | ||
place={event.place} | ||
description={event.description} | ||
date={event.date} | ||
time={event.time} | ||
place={event.place} | ||
/> | ||
{/each} | ||
</div> | ||
</div> |