adding timetable

This commit is contained in:
Tobi 2023-06-20 16:36:08 +02:00
parent 4078fce05f
commit 36a4877f05
4 changed files with 309 additions and 0 deletions

53
timetable/eventData.js Normal file
View file

@ -0,0 +1,53 @@
/*
This is the only file to be modified for adding your session at FediCamp.
Please follow the file structure as given in this example and commit your changes to the repo.
That's it!
If you have any questions, ask in the Matrix-Room or ask Tobi.
If you aren't sure what to do, ask someone to help!
You also can put the date & description about your session in the pad (Link in Matrix room).
It will be merged, but maybe not in time.
As locations, please only use the following:
'Camp ground', 'Fire place', 'Lunch table', 'Stage room', 'Mobile'
As start time please only use the following numbers:
10, 12, 14, 16, 18, 20
As days please only use the following days:
'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'
*/
const eventData = {
'Wednesday': {
10: {
'Camp ground': {
'event': 'Workshop & Irgendwas hier text',
'description': 'hier wird das Event genauer beschrieben!'
},
'Fire place': {
'event': 'Event 2',
'description': 'Description for Event 2'
}
/* other events */
},
12: {
'Lunch table': {
'event': 'Event 3',
'description': 'Description for Event 3'
},
'Stage room': {
'event': 'Event 4',
'description': 'Description for Event 4'
}
/* other events */
},
/* other times */
},
/* other days */
}