-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.js
80 lines (77 loc) · 2.2 KB
/
events.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Hi, Emily! This is where you can add events to the website.
// I highly recommend using the following format for each event:
// name, location, link, startDate, endDate
// Try to keep the names short and concise to avoid issues with styling.
// If you have any questions, feel free to ask me. - Denis
window.events = [
{
name: 'Cindys Home And Garden',
location: 'Kingsville',
link: 'https://cindysgarden.com/events/',
startDate: '2024-07-26',
endDate: '2024-07-26',
},
{
name: 'Dresden Night Market',
location: 'Dresden',
link: 'https://night-market.ca/',
startDate: '2024-07-27',
endDate: '2024-07-27',
},
{
name: 'Art By The River',
location: 'Amherstburg',
link: 'http://www.gibsonartgallery.com/Art-by-the-River.html',
startDate: '2024-08-24',
endDate: '2024-08-25',
},
{
name: 'Walkerville Brewery',
location: 'Walkerville',
link: 'https://www.walkervillebrewery.com/wddnm',
startDate: '2024-08-30',
endDate: '2024-08-30',
},
{
name: 'St.George Apple Fest',
location: 'St.George',
link: 'https://stgeorgeapplefest.ca/',
startDate: '2024-09-21',
endDate: '2024-09-22',
},
{
name: 'Lambton Fall Colour & Creaft Festival',
location: 'Grand Bend',
link: 'https://www.lambtonmuseums.ca/en/lambton-heritage-museum/lambton-fall-colour-craft-festival.aspx',
startDate: '2024-10-19',
endDate: '2024-10-20',
},
{
name: 'Cindys Home And Garden',
location: 'Kingsville',
link: 'https://cindysgarden.com/events/',
startDate: '2024-11-02',
endDate: '2024-11-03',
},
{
name: 'The Mom Market Collective',
location: 'Lasalle Event Center',
link: 'https://www.instagram.com/themommarket_windsor',
startDate: '2024-11-23',
endDate: '2024-11-23',
},
{
name: 'London Christmas Craft Show',
location: 'London - Western Fairgorund | Agriplex',
link: 'https://londoncraftshows.com/',
startDate: '2024-11-28',
endDate: '2024-12-01',
},
{
name: 'The Mom Market Collective',
location: 'Lasalle Event Center',
link: 'https://www.instagram.com/themommarket_windsor',
startDate: '2024-12-14',
endDate: '2024-12-25',
}
];