-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
803 lines (782 loc) · 32.6 KB
/
index.html
File metadata and controls
803 lines (782 loc) · 32.6 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Comfest PWA</title>
<link
rel="shortcut icon"
href="images/ComfestLogo-Basic-48.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="styles/styles.css" />
<link rel="manifest" href="manifest.json" />
<link rel="apple-touch-icon" href="/images/ComfestLogo-Basic-192.png" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="application-name" content="ComFest" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="ComFest" />
<meta name="theme-color" content="#e8554e" />
</head>
<body>
<!-- <body onload="openSection('sctComFest')"> -->
<div class="titlebar">
<div class="dropdown">
<!-- <button onclick="openSection('sctCOMFEST')" class="dropbtn">Menu</button> -->
<button onclick="openSection('sctCOMFEST')" class="dropbtn">
<img src="/images/Icons_Menu_2.svg" alt="Menu" srcset="" />
</button>
</div>
<div class="title">
<h3 id="pagetitle">COMFEST</h3>
</div>
<!-- <div class="spacer"> -->
<div class="rt-dropdown" id="filterButton">
<!-- <button onclick="fncBtnDropClick('scheduleDropdown')" class="dropbtn">Filter</button> -->
<button
onclick="fncBtnDropClick('scheduleDropdown')"
class="dropbtn toggleDropdown"
>
<img
class="toggleDropdown"
src="/images/Icons_Filter_2.svg"
alt="Menu"
srcset=""
/>
</button>
<!-- <h1>Comfest</h1> -->
<div id="scheduleDropdown" class="rt-dropdown-content dropdown-toggle">
<input class="search-input rt-buttons" type="text" id="searchDropDown" onkeyup="searchActs_2()" placeholder="Search...">
<a
id="btn-bozo"
class="stage-bozo rt-buttons"
onclick="toggleSlot('show-bozo')"
data-visible="true"
>Bozo</a
>
<a
id="btn-gazebo"
class="stage-gazebo rt-buttons"
onclick="toggleSlot('show-gazebo')"
data-visible="true"
>Gazebo</a
>
<a
id="btn-offramp"
class="stage-offramp rt-buttons"
onclick="toggleSlot('show-offramp')"
data-visible="true"
>Off Ramp</a
>
<a
id="btn-jazz"
class="stage-jazz rt-buttons"
onclick="toggleSlot('show-jazz')"
data-visible="true"
>Jazz</a
>
<a
id="btn-livearts"
class="stage-livearts rt-buttons"
onclick="toggleSlot('show-livearts')"
data-visible="true"
>Live Arts</a
>
<a
id="btn-solar"
class="stage-solar rt-buttons"
onclick="toggleSlot('show-solar')"
data-visible="true"
>Solar</a
>
<a
id="btn-peace"
class="stage-peace rt-buttons"
onclick="toggleSlot('show-peace')"
data-visible="true"
>Peace & Healing</a
>
<a
id="btn-kidsart"
class="stage-kidsart rt-buttons"
onclick="toggleSlot('show-kidsart')"
data-visible="true"
>KiDSART</a
>
<a
id="btn-friday"
class="stage-friday rt-buttons"
onclick="toggleSlot('show-friday')"
data-visible="true"
>Friday</a
>
<a
id="btn-saturday"
class="stage-saturday rt-buttons"
onclick="toggleSlot('show-saturday')"
data-visible="true"
>Saturday</a
>
<a
id="btn-sunday"
class="stage-sunday rt-buttons"
onclick="toggleSlot('show-sunday')"
data-visible="true"
>Sunday</a
>
<a
id="btn-favorites"
class="stage-favorites rt-buttons white-background"
onclick="openSection('sctFavorites')"
data-visible="true"
>Favorites</a
>
<a
id="btn-return"
class="stage-favorites rt-buttons white-background"
onclick="openSection('sctSchedule')"
data-visible="true"
>Return</a
>
<a
id="btn-clear-filter"
class="stage-favorites rt-buttons white-background"
onclick="clearFilter()"
data-visible="true"
>Clear Filters</a
>
</div>
<!-- </div> -->
</div>
</div>
<!--/titlebar-->
<!--placing div to space everything below title bar-->
<div class="headerspace"></div>
<div class="contentwrapper">
<!-- This div holds a copy of the main menu when on large screen -->
<div class="responsive-menu-large_screen">
<div class="menu-large_screen" >
<header class="logoTitle">
<img src="images/cropped-Header2019.png" alt="Comfest. Est: 1972" />
</header>
<div class="buttongroup">
<div
class="buttonpackage"
onclick="openSection('sctCOMFEST')"
>
<img src="/images/Icons_Menu_2.svg" alt="Bullhorn" id="alternate_home_icon"/>
<p>Home</p>
</div>
<div
class="buttonpackage"
onclick="openSection('sctSpeakers_&_Workshops')"
>
<img src="images/Icons_Speakers_Workshops.svg" alt="Bullhorn" />
<p>Speakers</p>
</div>
<div class="buttonpackage" onclick="openSection('sctSchedule')">
<img src="images/Icons_Stage_Schedule.svg" alt="Schedule icon" />
<p>Schedule</p>
</div>
<div class="buttonpackage" onclick="openSection('sctStreet_Fair')">
<img src="images/Icons_Street_Fair.svg" alt="Vendor booth" />
<p>Street Fair</p>
</div>
<div class="buttonpackage" onclick="openSection('sctFavorites')">
<img src="images/Icons_Favorites.svg" alt="Heart" />
<p>Favorites</p>
</div>
<div class="buttonpackage" onclick="openSection('sctProgram')">
<img src="images/Icons_Program.svg" alt="Program icon" />
<p>Program</p>
</div>
<div class="buttonpackage" onclick="openSection('sctTips_and_Info')">
<img src="images/Icons_Tips_Info.svg" alt="Lightbulb" />
<p>Tips & Info</p>
</div>
<div class="buttonpackage" onclick="openSection('sctMap')">
<img src="images/Icons_Map.svg" alt="Map icon" />
<p>Map</p>
</div>
<div class="buttonpackage" onclick="openSection('sctPurpose')">
<img src="images/Icons_Purpose.svg" alt="Purpose icon" />
<p>Purpose</p>
</div>
<div class="buttonpackage" onclick="openSection('sctVolunteer')">
<img src="images/Icons_Volunteer.svg" alt="Volunteer icon" />
<p>Volunteer</p>
</div>
<!-- onclick="openSection('sctWebsite')" -->
<!-- <div class="buttonpackage" onclick="window.location.href='https://www.comfest.com'"> -->
<a href="https://www.comfest.com" class="buttonpackage" target="_blank">
<img src="images/Icons_Website.svg" alt="Website icon" />
<p>Website</p>
</a>
<!-- <img src="images/Website.svg" alt="Website icon" />
<p>Website</p>
</div> -->
<div class="buttonpackage" onclick="openSection('sctUtilities')">
<img src="images/Icons_Settings.svg" alt="utilities" />
<p>Utilities</p>
</div>
</div>
</div>
</div>
<!-- This div holds everything else. when on small screen it -->
<div class="responsive-all_content">
<!-- Section Frontpage -->
<div class="tabcontent" id="sctCOMFEST">
<header class="logoTitle">
<img src="images/cropped-Header2019.png" alt="Comfest. Est: 1972" />
</header>
<div class="buttongroup">
<div
class="buttonpackage"
onclick="openSection('sctSpeakers_&_Workshops')"
>
<img src="images/Icons_Speakers_Workshops.svg" alt="Bullhorn" />
<p>Speakers</p>
</div>
<div class="buttonpackage" onclick="openSection('sctSchedule')">
<img src="images/Icons_Stage_Schedule.svg" alt="Schedule icon" />
<p>Schedule</p>
</div>
<div class="buttonpackage" onclick="openSection('sctStreet_Fair')">
<img src="images/Icons_Street_Fair.svg" alt="Vendor booth" />
<p>Street Fair</p>
</div>
<div class="buttonpackage" onclick="openSection('sctFavorites')">
<img src="images/Icons_Favorites.svg" alt="Heart" />
<p>Favorites</p>
</div>
<div class="buttonpackage" onclick="openSection('sctProgram')">
<img src="images/Icons_Program.svg" alt="Program icon" />
<p>Program</p>
</div>
<div class="buttonpackage" onclick="openSection('sctTips_and_Info')">
<img src="images/Icons_Tips_Info.svg" alt="Lightbulb" />
<p>Tips & Info</p>
</div>
<div class="buttonpackage" onclick="openSection('sctMap')">
<img src="images/Icons_Map.svg" alt="Map icon" />
<p>Map</p>
</div>
<div class="buttonpackage" onclick="openSection('sctPurpose')">
<img src="images/Icons_Purpose.svg" alt="Purpose icon" />
<p>Purpose</p>
</div>
<div class="buttonpackage" onclick="openSection('sctVolunteer')">
<img src="images/Icons_Volunteer.svg" alt="Volunteer icon" />
<p>Volunteer</p>
</div>
<!-- onclick="openSection('sctWebsite')" -->
<!-- <div class="buttonpackage" onclick="window.location.href='https://www.comfest.com'"> -->
<a href="https://www.comfest.com" class="buttonpackage" target="_blank">
<img src="images/Icons_Website.svg" alt="Website icon" />
<p>Website</p>
</a>
<!-- <img src="images/Website.svg" alt="Website icon" />
<p>Website</p>
</div> -->
<div class="buttonpackage" onclick="openSection('sctUtilities')">
<img src="images/Icons_Settings.svg" alt="utilities" />
<p>Utilities</p>
</div>
</div>
<div class="menu-alternate-visibility">
<!-- This div is visible on large screens -->
<h2>The latest...</h2>
<div class="menu-alternate">
</div>
</div>
</div>
<!--end front page-->
<!-- Section Purpose -->
<div class="tabcontent" id="sctPurpose">
<div class="container-text">
<p>ComFest celebrates community in all its manifestations. Entertainment provides local music. Street Fair shows off local business, food, as well as arts and crafts. Spirit & Purpose focuses on health and wellness, performance art, and social and political issues of the day with a variety of speakers and workshops.</p>
<!-- <div class="images"> -->
<img class="image" src="/images/2018-Comfest_Robert-Berry-248_300.jpg" alt="">
<!-- </div> -->
<h3>The ComFest Statement of Principles</h3>
<p>
The Community Festival is guided by its Principles. The Principles are
statements of what the members believe is basically important. They are:
</p>
<p>
We think that people ought to work for the collective good of all people
rather than for personal gain. We support cooperation and collective
activity rather than competition and individual profit.
</p>
<p>
The basic necessities of life are a right and not a privilege. People
have the collective right to control the conditions of their lives.
</p>
People should strive to conduct their lives in harmony with the
environment.
<p>
We recognize that there are primary attitudes which divide and oppress
people. These attitudes are usually shown by prejudice against people on
the basis of age, class, ability, income, race, sex and sexual
preference/orientation.
</p>
<p>
We seek to eliminate these attitudes.
</p>
<p>
The Statement of Principles is more important than any other writings of
the Community Festival.
</p>
<img class="image" src="/images/COMFEST_1A_06222018_IMGL0447_1_300.jpg" alt="">
<h3>Mission Statement</h3>
<p>The Community Festival is an independent, volunteer-organized celebration of creativity and activism in Columbus, OH. Founded in 1972, its purpose is to build bridges between progressive non-profit organizations, artists, and volunteers to raise awareness and promote action within our community. Everything we do is guided by our principles which promote community unity, tolerance, and equity.</p>
<p>We will strive to realize this mission through the fulfillment of the following Organizational Goals:</p>
<ul>
<li>Building community bridges and nurturing collaboration through safe,
peaceful, sustainable practices</li>
<li>Initiating opportunities for community involvement and activism including
information and workshops at the festival, non-profit networking and
communication</li>
<li>Promoting a more unified, tolerant, and equitable community</li>
<li>Showcasing and celebrating Columbus and Central Ohio artists, craftspeople,
musicians, activists and community organizations</li>
</ul>
</div>
</div>
<!-- end Purpose -->
<!-- Section Program -->
<div class="tabcontent" id="sctProgram">
<div class="container-text">
<h1>2019 Program Guide</h1>
<a
href="/assets/ComFest_2019.pdf"
target="_blank"
>
<img
class="alignnone size-large wp-image-649 program-main"
src="/images/ComFest_2019_1.jpg"
alt=""
width="300"
height="auto"
/>
</a>
<p>This is a large file (40Mb). We recommend downloading it before the festival. If you're already here, Programs are available throughout the park!</p>
</div>
</div>
<!-- end Program -->
<!-- Section Website -->
<div class="tabcontent" id="sctWebsite">
<h1>Website</h1>
</div>
<!-- end Website -->
<!-- Section Speakers Workshops -->
<div class="tabcontent" id="sctSpeakers_&_Workshops">
<div class="subtitleSchedule"></div>
<!-- <div class="center-text">
<input class="search-input" type="text" id="searchWorkshop" onkeyup="searchActs('searchWorkshop','speakerslist')" placeholder="Search..">
</div> -->
<!-- end subTitle-->
<!-- <h1>Schedule-Test</h1>-->
<ul class="performancelist" id="speakerslist"></ul>
</div>
<!-- end Speakers Workshops -->
<!-- Section Street Fair -->
<div class="tabcontent" id="sctStreet_Fair">
<!-- <div class="subMenuBar">
<div><a href="#sf_food">Food</a></div>
<div><a href="#sf_organizations">Organizations</a></div>
<div><a href="#sf_vendors">Vendors</a></div>
</div> -->
<div class="container-text">
<!-- <h3 id="sf_food">Food</h3> -->
<ul class="list__streetfair">
<h4 class="list__streetfair-title bkg-gazebo">Russell & Park Gate</h4>
<li><strong>Go Bananas:</strong> Chocolate covered bananas</li>
<li><strong>CORVA watermelon:</strong> Watermelon cubes</li>
</ul>
<ul class="list__streetfair">
<h4 class="list__streetfair-title bkg-main">Russell & Park</h4>
<li><strong>Franklin Avenue Neighbors:</strong> Pop & WATER.— refill your water bottle here</li>
</ul>
<ul class="list__streetfair">
<h4 class="list__streetfair-title bkg-main">Park St. Midway N to S</h4>
<li><strong>D's Dogs:</strong> Hot dogs, brats, sausage</li>
<li><strong>Lavash Cafe:</strong> Gyro, fatayer, kabob</li>
<li><strong>Bubble Tea:</strong> Smoothies, teas, juices</li>
<li><strong>Global Gallery Coffee Shop:</strong> Ice coffee, grilled corn, Tibetan momos</li>
<li><strong>Free Clinic:</strong> Sun-brewed iced tea</li>
<li><strong>Flavors of India:</strong> Makhini, curry, saag paneer, samosa</li>
<li><strong>Queen's Table:</strong> Fishboat, fries, fried chicken</li>
<li><strong>Nida Sushi:</strong> Phad thai, spring roll</li>
<li><strong>Gilligans:</strong> Stir fry, smoothies, breakfast</li>
<li><strong>Whole World:</strong> Broccoli burger, black bean wrap</li>
<li><strong>Firdous:</strong> Middle Eastern food</li>
</ul>
<ul class="list__streetfair">
<h4 class="list__streetfair-title bkg-jazz">Jazz Cap</h4>
<li><strong>Todd's Lemonade:</strong> Lemonade</li>
<li><strong>Columbus Coalition for the Homeless:</strong> WATER</li>
<li><strong>J-Pops:</strong> Gourmet popcicles</li>
<li><strong>Paddy Wagon:</strong> Arrestingly good food</li>
<li><strong>Dirty Franks:</strong> Dogs</li>
<li><strong>Icee Rainbows:</strong> Italian ice</li>
<ul class="list__streetfair">
<h4 class="list__streetfair-title bkg-bozo">Bozo Food E to W</h4>
<li><strong>Todd's Lemonade:</strong> Lemonade</li>
<li><strong>Patty Cake Bakery:</strong> Cookies, cupcakes, whoopie pie, sticky buns</li>
<li><strong>Short North Bagel:</strong> Steamed deli sandwiches</li>
<li><strong>Bubble Tea:</strong> Smoothies, teas, juices</li>
<li><strong>Ecole Kenwood PTA:</strong> WATER — refill your water bottle here</li>
<li><strong>Ribman:</strong> Ribs</li>
<li><strong>Mikey's Late Night Slice:</strong> Pizza</li>
<li><strong>Jeni's Ice Cream:</strong> Ice cream</li>
<li><strong>Short North Bagels & Deli:</strong> Deli Sandwiches</li>
<li><strong>Cupzilla:</strong> The new round meal</li>
</ul>
<ul class="list__streetfair">
<h4 class="list__streetfair-title bkg-peace">Peace Village Food</h4>
<li><strong>Island Noodles:</strong> Soba noodles with veggies or meats</li>
<li><strong>Love Bug:</strong> Daily gourmet delights</li>
<li><strong>2 Fat Indians:</strong> Veggie and non-veggie Indian dishes</li>
<li><strong>Drank Tank:</strong> Bubbly beverages</li>
<li><strong>Simply Living:</strong> WATER — BOTTLE-LESS refill station</li>
<li><strong>Katie's Snack Food:</strong> Jerky (beef, bison, elk, pineapple)</li>
</ul>
<ul class="list__streetfair">
<h4 class="list__streetfair-title bkg-livearts">
Near Live Arts Stage
</h4>
<li><strong>Red Oaks:</strong> WATER — refill your water bottle here.</li>
</ul>
<ul class="list__streetfair">
<h4 class="list__streetfair-title bkg-main">Fair Food</h4>
<li>
Along Goodale you will find the finest in "Fair" food from corndogs
and candy apples to pizza and cream puffs. You can't miss the
beautiful trailers along Goodale!
</li>
</ul>
<!-- Organizations -->
<!-- <h3 id="sf_organizations">Organizations</h3>
<ul class="list__streetfair">
<h4 class="list__streetfair-title bkg-gazebo">Generic Organization</h4>
<li><strong>Stand Together:</strong> Togetherness together</li>
</ul> -->
<!-- Vendors -->
<!-- <h3 id="sf_vendors">Vendors</h3>
<ul class="list__streetfair">
<h4 class="list__streetfair-title bkg-gazebo">Gazebo Vendors</h4>
<li><strong>Glass and stuff:</strong> Flavored shaved glass</li>
</ul> -->
</div>
</div>
<!-- end Street Fair -->
<!-- Tips and Info -->
<div class="tabcontent" id="sctTips_and_Info">
<!-- <h1>Tips and Info</h1> -->
<!-- <div class="subMenuBar">
<div>FAQ</div>
<div>Getting Here</div>
<div>No BYOB</div>
</div> -->
<div class="container-text">
<ul class="tips-list">
<li>
How much does it cost to get into ComFest?
<p>
The Community Festival is free to attend! There are no tickets or
cover charges.
</p>
</li>
<li>
Where is ComFest? How do I get there? Where do I park?
<p>
The festival is held in <a class="underline" href="https://www.google.com/maps/place/Goodale+Park/@39.9756383,-83.0091869,17z/data=!3m1!4b1!4m5!3m4!1s0x88388ed881f122a5:0x7f4fdac22ecc5768!8m2!3d39.9756342!4d-83.0069982" target="_blank">Goodale Park</a>, near downtown Columbus,
Ohio.
</p>
<p>
Because of the traffic caused by our event, and to help the
environment, we highly recommend riding a bicycle and using our $1
bicycle valet, or riding the COTA bus which will be running late
on Friday and Saturday.
</p>
<p>
If you must drive, you should park in the Arena District, as most
street parking in the neighborhood requires a residential parking
permit; cars parked illegally in the neighborhood will be towed.
If you must street park, please plan for the new meter system in
the Short North and download the new mobile app for parking in the
Short North area by searching for: ParkColumbus App. You can also
read up on the new parking information by searching for ‘The City
of Columbus Parking’.
</p>
</li>
<li>
When are my volunteer shifts?
<p>
If you have already signed up and need a list of your shifts, just
send an email to
<a class="underline" onclick="window.location.href = 'mailto:myshifts@comfest.com'"
>myshifts@comfest.com</a
>, and our shift robot will reply with shift details and important
info.
</p>
</li>
<li>
How do I volunteer?
<p>
Fill out your
<a class="underline" href="https://www.comfest.com/volunteer" target="_blank"
>volunteer application</a
>, where you can pick jobs and shifts that suit your unique
talents. Applications are usually available by March.
</p>
</li>
<li>
What’s the minimum age to attend?
<p>
ComFest is open to all ages, however for their own safety, we ask
that children be accompanied by a parent or guardian. Parents can
get a wristband at KiDSART or Safety Base Station and write a
parents cell number on it so we can quickly reunite lost kids with
parents.
</p>
</li>
<li>
Who is performing? What is there to do at ComFest?
<p>
Workshops, speakers, dancers, music, arts & crafts, food and
vendors—there is so much to do at ComFest. Our performance
schedule is available on this app. Even more event
information is available in our annual Program Guide.
</p>
</li>
<li>
Can I bring alcoholic beverages from home?
<p>
NO! ComFest is a no BYOB event. Carry-in alcohol is illegal in city parks. Police officers
will be present at the event to enforce all laws. ComFest will
have multiple Beer and Wine booths on Park Street and Goodale
Street. Avoid a ticket (or worse) by buying your alcoholic
beverages at the festival. Please cooperate with our NO BYOB
volunteers and remove all alcohol from the premises when asked.
</p>
</li>
<li>
Are coolers allowed at ComFest?
<p>
We are asking that you please leave your coolers at home. We also
ask that you do not leave backpacks unattended. Stay with your
stuff and tag those bags with your name and cell number. If you
bring something into the park, please take it back home with you.
Otherwise, make sure to clean up after yourself, and use one of
the recycling areas located throughout the event.
</p>
</li>
<li>
How can I have a booth or sell items at ComFest?
<p>
<a class="underline" href="https://www.comfest.com/applications/" target="_blank"
>Check out our applications page.</a
>
</p>
</li>
<li>
How can I perform at the festival?
<p>
<a class="underline" href="https://www.comfest.com/applications/" target="_blank">
Check out our applications page.</a
>
</p>
</li>
<!-- </ul>
<h3>Getting to ComFest</h3>
<ul class="tipslist"></ul> -->
</div>
</div>
<!-- end Tips and Info -->
<!-- Section Volunteer -->
<div class="tabcontent " id="sctVolunteer">
<div class="container-text">
<h3>Behold, the power behind ComFest – OUR VOLUNTEERS!</h3>
<div class="images">
<img
width="100%"
src="/images/First-Aid-1-300x200.jpg"
alt="First Aid 1"
/>
</div>
<!-- <button type="button" class="default-button" onclick="window.location.href = 'https://www.comfest.com/volunteer'" >Volunteer Now!</button> -->
<a
href="https://www.comfest.com/volunteer"
target="_blank"
><img width="200px" height="auto" src="images/Volunteer-Now.jpg"></a
>
<p>
<strong>ComFest is an entirely volunteer run festival.</strong> We
literally couldn’t pull this off without our volunteers. Energetic,
friendly volunteers are needed all over for a variety of jobs.
</p>
<p>
<strong
>We have roughly 3,000 volunteer shifts to fill each year.</strong
>
There's plenty of room for you in the ComFest family!
</p>
</div>
</div>
<!-- end Volunteer -->
<!-- Section Schedule -->
<div class="tabcontent" id="sctSchedule">
<div class="subtitleSchedule"></div>
<!-- end subTitle-->
<!-- <h1>Schedule-Test</h1>-->
<ul class="performancelist" id="performancelist">
<!--<li class="slot-card show-jazz">
<div class="card-time">1:50 PM</div>
<div class="card-stage">I wish you Jazz</div>
<div class="card-day">Friday</div>
<div class="card-band">Band Name</div>
<div class="card-description">Description</div>
</li>
<li class="slot-card">
<h4>1:50 PM</h4>
<h4>I wish you Jazz</h4>
<h4>Friday</h4>
<div class="card-band">Band Name</div>
<div class="card-description">Description</div>
</li>
<li class="slot-card">
<h4>1:50 PM</h4>
<h4>I wish you Jazz</h4>
<h4>Friday</h4>
<div class="card-band">Band Name</div>
<div class="card-description">Description</div>
</li>-->
</ul>
</div>
<!-- end Schedule -->
<!-- Favorites -->
<div class="tabcontent" id="sctFavorites"></div>
<!-- Section Map -->
<div class="tabcontent" id="sctMap">
<img class="image-map"src="images/ComFest2019_Map.png" alt="Park Map" />
</div>
<!-- end Map -->
<!-- Utilities -->
<div class="tabcontent" id="sctUtilities">
<div class="container-text">
<h2>Welcome to the Utilties Page</h2>
<h3>About this App</h3>
<p>
The ComFest app is designed to give you all the information you need
on hand at the festival, in a simpler, less intrusive alternate to a
traditional phone app. This is our first attempt at a this kind of
app, so everything may not run perfectly. Please be patient with us
and provide us feedback on what you liked and what you didn't!
</p>
<hr />
<h3>Install Instructions</h3>
<!-- <ul> -->
<h4>iPhone Instructions</h4>
<div class="callout">
<div class="callout-image">
<img src="images/add.svg" alt="add icon" />
</div>
<div class="callout-text">
Save this webapp to your iPhone: tap below on
<img src="images/square-arrow.svg" />
and then tap "Add to Home Screen"
</div>
</div>
<h4>Android Instructions:</h4>
<div class="callout" id="android-callout-static">
<div class="callout-image">
<img src="images/ComfestLogo-Basic-48.png" alt="Hopewell symbol" />
</div>
<div class="callout-text">
Add ComFest to your Home Screen:
</div>
<button
class="callout-button android-callout-button-add"
id="android-callout-button-add"
>
Add
</button>
</div>
<!-- </ul> -->
<hr />
<h3>Reset</h3>
<p>
If you're having problems, it may help to reload the app - it's like
turning it off and on again
</p>
<button type="button" id="app_reload_page" class="default-button">
Reload</button
><br />
<p>
If that doesn't work it may be necessary to reset the app. This will
remove comfest's saved files from your browser and request the files
directly from the server. It should reset the App completely.
</p>
<button type="button" id="app_reset_app" class="default-button">
Reset
</button>
<hr />
<h3>Contact Us</h3>
<p>
Email us if you like the app, if you have any suggestions to improve
it or if you have any problems.
</p>
<button
type="button"
class="default-button"
onclick="window.location.href = 'mailto:pwa@comfest.com?subject=PWA%20Comment'"
>
Contact
</button>
</div>
</div>
<!-- end Utilities -->
<!-- callout button for iOS install -->
<!-- https://www.w3schools.com/howto/howto_js_callout.asp -->
<!-- https://www.netguru.com/codestories/few-tips-that-will-make-your-pwa-on-ios-feel-like-native -->
<div class="callout-container">
<div class="callout" id="iOS-callout" style="display: none">
<div class="callout-image">
<img src="images/add.svg" alt="add icon" />
</div>
<div class="callout-text">
Save this webapp to your iPhone: tap below on
<img src="images/square-arrow.svg" />
and then tap "Add to Home Screen"
</div>
<div
class="callout-closebtn"
onclick="this.parentElement.style.display='none';"
>
×
</div>
</div>
<div class="callout" id="android-callout" style="display: none">
<div class="callout-image">
<img src="images/ComfestLogo-Basic-48.png" alt="Hopewell symbol" />
</div>
<div class="callout-text">Add ComFest to your Home Screen</div>
<button class="callout-button" id="android-callout-button-cancel">
Cancel
</button>
<button
class="callout-button android-callout-button-add"
id="android-callout-button-add"
>
Add
</button>
</div>
</div>
</div>
</div>
</body>
<script src="scripts/main.js"></script>
</html>