forked from KABI/fedi.camp_Website
163 lines
5.4 KiB
JavaScript
163 lines
5.4 KiB
JavaScript
/*
|
|
|
|
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',
|
|
'description': 'This is just an examble. The timetable will be filled over time!'
|
|
},
|
|
'Fire place': {
|
|
'event': 'Talk',
|
|
'description': 'This is just an examble. The timetable will be filled over time!'
|
|
}
|
|
/* other events */
|
|
},
|
|
12: {
|
|
'Lunch table': {
|
|
'event': 'Event',
|
|
'description': 'This is just an examble. The timetable will be filled over time!'
|
|
},
|
|
'Stage room': {
|
|
'event': 'Event',
|
|
'description': 'This is just an examble. The timetable will be filled over time!'
|
|
}
|
|
/* other events */
|
|
},
|
|
/* other times */
|
|
},
|
|
'Thursday': {
|
|
10: {
|
|
'Camp ground': {
|
|
'event': 'Workshop II',
|
|
'description': 'This is just an examble. The timetable will be filled over time!'
|
|
},
|
|
'Fire place': {
|
|
'event': 'Event 2',
|
|
'description': 'This is just an examble. The timetable will be filled over time!'
|
|
}
|
|
/* other events */
|
|
},
|
|
12: {
|
|
'Lunch table': {
|
|
'event': 'Event 3',
|
|
'description': 'This is just an examble. The timetable will be filled over time!'
|
|
},
|
|
'Stage room': {
|
|
'event': 'Event 4',
|
|
'description': 'This is just an examble. The timetable will be filled over time!'
|
|
}
|
|
/* other events */
|
|
},
|
|
/* other times */
|
|
},
|
|
'Friday': {
|
|
10: {
|
|
'Camp ground': {
|
|
'event': 'Workshop & Irgendwas hier text',
|
|
'description': 'This is just an examble. The timetable will be filled over time!'
|
|
},
|
|
'Fire place': {
|
|
'event': 'Event 2',
|
|
'description': 'This is just an examble. The timetable will be filled over time!'
|
|
}
|
|
/* other events */
|
|
},
|
|
12: {
|
|
'Lunch table': {
|
|
'event': 'Event 3',
|
|
'description': 'This is just an examble. The timetable will be filled over time!'
|
|
},
|
|
'Stage room': {
|
|
'event': 'Event 4',
|
|
'description': 'This is just an examble. The timetable will be filled over time!'
|
|
}
|
|
/* other events */
|
|
},
|
|
20: {
|
|
'Fire place': {
|
|
'event': 'Bonfire',
|
|
'description': 'Sit-in and talks around the fire.'
|
|
},
|
|
'Lunch table': {
|
|
'event': 'Tidying up',
|
|
'description': 'Tidying up the kitchen and preparing for the next day.'
|
|
}
|
|
/* other events */
|
|
},
|
|
/* other times */
|
|
},
|
|
'Saturday': {
|
|
12: {
|
|
'Camp ground': {
|
|
'event': 'Workshop',
|
|
'description': 'hier wird das Event genauer beschrieben!'
|
|
},
|
|
'Fire place': {
|
|
'event': 'Event 2',
|
|
'description': 'This is just an examble. The timetable will be filled over time!'
|
|
}
|
|
/* other events */
|
|
},
|
|
16: {
|
|
'Camp ground': {
|
|
'event': 'Lötworkshop',
|
|
'description': 'Lernt löten. @hilde@dz.social wird durch den Workshop führen und Euch zeigen, wie das alles funktioniert. Lötkolben und weiteres benötigtes Werkzeug wird zur Verfügung gestellt.'
|
|
},
|
|
/* other events */
|
|
},
|
|
20: {
|
|
'Fire place': {
|
|
'event': 'Bonfire',
|
|
'description': 'Sit-in and talks around the fire.'
|
|
},
|
|
'Lunch table': {
|
|
'event': 'Tidying up',
|
|
'description': 'Tidying up the kitchen and preparing for the next day.'
|
|
}
|
|
/* other events */
|
|
},
|
|
/* other times */
|
|
},
|
|
'Sunday': {
|
|
12: {
|
|
'Camp ground': {
|
|
'event': 'Tearing down',
|
|
'description': 'Clearing up the camp grounds.'
|
|
},
|
|
/* other events */
|
|
},
|
|
14: {
|
|
'Lunch table': {
|
|
'event': 'Coffee',
|
|
'description': "Let's have a last coffee before traveling home again."
|
|
},
|
|
/* other events */
|
|
},
|
|
/* other times */
|
|
},
|
|
/* other days */
|
|
}
|