-
Notifications
You must be signed in to change notification settings - Fork 0
/
dancecommons.html
884 lines (869 loc) · 35.3 KB
/
dancecommons.html
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
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async
src="https://www.googletagmanager.com/gtag/js?id=UA-166089693-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-166089693-1');
</script>
<meta charset="UTF-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible"
content="ie=edge" />
<meta name="description"
content="Creating a community of Indian Classical Dancers that fosters mutual growth and solidarity.">
<title>Dance Commons | Nrityagram Dance Village, India</title>
<link rel="preconnect"
href="https://fonts.gstatic.com">
<link rel="preconnect"
href="https://res.cloudinary.com">
<link rel="stylesheet"
href="/styles/ng-page.min.css" />
<link rel="stylesheet"
href="/styles/ng-navbar.min.css" />
<link rel="stylesheet"
href="/styles/ng-contentstyle-1.min.css" />
<link rel="stylesheet"
href="/styles/ng-a-img-pointer-events.css">
<link rel="shortcut icon"
href="/img/logo/ng_logo-favicon.png" />
<script src="/scripts/jquery-3.4.1.min.js"></script>
</head>
<body>
<header>
<a href="/">
<img src="img/logo/ng_logo.png"
alt=""
class="logo"
loading="lazy" />
</a>
<div class="mobile-nav">
<form id="mobilemenu-form">
<input type="checkbox"
id="nav-toggle-id"
class="nav-toggle" />
<nav>
<ul>
<li>
<input type="checkbox"
id="ensemble-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="ensemble-toggle-id"
class="menu-toggle-label">
<span class="item-text">Ensemble</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="ensemble.html">Nrityagram Ensemble</a></li>
<li>
<input type="checkbox"
id="repertory-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<span class="itemlink-plus-chevron">
<a href="repertoire.html">Repertoire</a>
<label for="repertory-toggle-id"
class="chevron-label">
<span class="chevron"></span>
</label>
</span>
</div>
<ul class="submenu">
<li>
<a href="repertoire.html#sri">Śrī: In Search of the Goddess</a>
</li>
<li><a href="repertoire.html#ansh">Ansh</a></li>
<li><a href="repertoire.html#sspace">Sacred Space</a></li>
<li>
<a href="repertoire.html#pratima">Pratimā: Reflection</a>
</li>
<li><a href="repertoire.html#sriyah">Śriyaḥ</a></li>
<li><a href="repertoire.html#samhara">Saṃhāra</a></li>
<li><a href="repertoire.html#samyoga">Saṃyoga</a></li>
<li>
<a href="repertoire.html#lovelong">Songs of Love and Longing</a>
</li>
<li><a href="repertoire.html#yadu">Yadunandana</a></li>
<li><a href="repertoire.html#ahuti">Āhuti</a></li>
</ul>
</li>
<li><a href="performancemap.html">Performances</a></li>
</ul>
</li>
<li>
<input type="checkbox"
id="school-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="school-toggle-id"
class="menu-toggle-label">
<span class="item-text">School</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="gurukula.html">Nrityagram Gurukula</a></li>
<li><a href="danceprof.html">Dance Professionals</a></li>
<li>
<input type="checkbox"
id="class-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<span class="itemlink-plus-chevron">
<a href="danceunlimited.html">Dance Unlimited</a>
<label for="class-toggle-id"
class="chevron-label">
<span class="chevron"></span>
</label>
</span>
</div>
<ul class="submenu">
<li>
<a href="danceunlimited.html#residential">Residential Workshops</a>
</li>
<li>
<a href="danceunlimited.html#parttime">Non-Residential Training</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<input type="checkbox"
id="comm-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="comm-toggle-id"
class="menu-toggle-label">
<span class="item-text">Community</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="danceaware.html">Dance Awareness</a></li>
<li><a href="villageoutreach.html">Village Outreach</a></li>
<li><a href="supportingartists.html">Supporting Artists</a></li>
<li>
<input type="checkbox"
id="poparts-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<span class="itemlink-plus-chevron">
<a href="popularisingarts.html">Popularising the Arts</a>
<label for="poparts-toggle-id"
class="chevron-label">
<span class="chevron"></span>
</label>
</span>
</div>
<ul class="submenu">
<li>
<a href="popularisingarts.html#vasant">Vasantahabba</a>
</li>
<li>
<a href="popularisingarts.html#ajji">Ajji Kathegaḷu</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<input type="checkbox"
id="ppl-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="ppl-toggle-id"
class="menu-toggle-label">
<span class="item-text">People</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="protima.html">Protima Gauri</a></li>
<li><a href="surupa.html">Surupa Sen</a></li>
<li><a href="pavithra.html">Pavithra Reddy</a></li>
<li><a href="lynne.html">Lynne Fernandez</a></li>
</ul>
</li>
<li>
<input type="checkbox"
id="abt-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="abt-toggle-id"
class="menu-toggle-label">
<span class="item-text">About</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="vision.html">Vision</a></li>
<li><a href="history.html">History</a></li>
<li>
<input type="checkbox"
id="space-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<span class="itemlink-plus-chevron">
<a href="space.html">Space</a>
<label for="space-toggle-id"
class="chevron-label">
<span class="chevron"></span>
</label>
</span>
</div>
<ul class="submenu">
<li>
<a href="space.html#temple">Temple</a>
</li>
<li>
<a href="space.html#yoga">Yoga Centre</a>
</li>
<li>
<a href="space.html#odissi">Odissi Gurukul</a>
</li>
<li>
<a href="space.html#dining">Dining Hall</a>
</li>
<li>
<a href="space.html#cottages">Cottages</a>
</li>
<li>
<a href="space.html#kula">Kula</a>
</li>
<li>
<a href="space.html#amphi">Amphitheatre</a>
</li>
</ul>
</li>
<li>
<input type="checkbox"
id="future-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<span class="itemlink-plus-chevron">
<a href="future.html">Future</a>
<label for="future-toggle-id"
class="chevron-label">
<span class="chevron"></span>
</label>
</span>
</div>
<ul class="submenu">
<li>
<a href="future.html#artscentre">Performing Arts Centre</a>
</li>
<li>
<a href="future.html#resourcecentre">Nrityagyān Resource Centre</a>
</li>
<!-- <li>
<a href="future.html#prayoga">Prayoga</a>
</li>
<li>
<a href="future.html#uruhabba">Uruhabba - The Village Fest</a>
</li> -->
</ul>
</li>
<li><a href="board.html">Board of Trustees</a></li>
</ul>
</li>
<li>
<input type="checkbox"
id="visit-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="visit-toggle-id"
class="menu-toggle-label">
<span class="item-text">Visit</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="thingstodo.html">Things to do</a></li>
<li><a href="findyourway.html">Find your Way</a></li>
<li>
<a href="https://www.google.co.in/maps/@13.1615025,77.4593968,3a,60y,90t/data=!3m6!1e1!3m4!1s-9UefyZY73ob-pFS-YGTlA!2e0!7i13312!8i6656"
target="_blank">Virtual Tour</a>
</li>
</ul>
</li>
<li>
<input type="checkbox"
id="support-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="support-toggle-id"
class="menu-toggle-label">
<span class="item-text">Support</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="support.html">Support Us</a></li>
<!-- <li>
<input
type="checkbox"
id="vardan-toggle-id"
class="menu-toggle"
/>
<div class="item-chevron">
<span class="itemlink-plus-chevron">
<a href="vardan.html">Join Vardān</a>
<label for="vardan-toggle-id" class="chevron-label">
<span class="chevron"></span>
</label>
</span>
</div>
<ul class="submenu">
<li>
<a href="friendsofng.html">Friends of Nrityagram</a>
</li>
<li>
<a href="ngangels.html">Nrityagram Angels</a>
</li>
</ul>
</li> -->
<li><a href="donate.html">Donate</a></li>
<li><a href="corpusfund.html">Support the Corpus Fund</a></li>
<li>
<a href="otherwaystogive.html">Other ways to Give</a>
</li>
<li>
<a href="sponsorship.html">Sponsorship</a>
</li>
</ul>
</li>
<li><a href="press.html">Press</a></li>
<li>
<input type="checkbox"
id="showtime-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="showtime-toggle-id"
class="menu-toggle-label">
<span class="item-text">Media</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="showtime.html">Showtime</a></li>
<li><a href="behindthescenes.html">Behind the Scenes</a></li>
<li><a href="lifeatng.html">Life at Nrityagram</a></li>
<li><a href="downtime.html">Downtime</a></li>
</ul>
</li>
</ul>
</nav>
<label for="nav-toggle-id"
class="nav-toggle-label"
onclick="set_reset_menu();">
<span class="hamburger"></span>
</label>
</form>
</div>
<div class="desktop-nav">
<div class="redmenu">
<div class="item"
onmouseover="showSubmenu(this);">
About
<div class="submenu"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="vision.html">Vision</a></li>
<li><a href="history.html">History</a></li>
<li>
<a href="space.html">Space</a>
<div class="sub-submenu">
<ul>
<li><a href="space.html#temple">Temple</a></li>
<li><a href="space.html#yoga">Yoga Centre</a></li>
<li><a href="space.html#odissi">Odissi Gurukul</a></li>
<li><a href="space.html#dining">Dining Hall</a></li>
<li><a href="space.html#cottages">Cottages</a></li>
<li><a href="space.html#kula">Kula</a></li>
<li><a href="space.html#amphi">Amphitheatre</a></li>
</ul>
</div>
</li>
<li>
<a href="future.html">Future</a>
<div class="sub-submenu">
<ul>
<li><a href="future.html#artscentre">Performing Arts Centre</a></li>
<li><a href="future.html#resourcecentre"">Nrityagyān Resource Centre</a></li>
<!-- <li><a href="
future.html#prayoga">Prayoga</a></li>
<li><a href="future.html#uruhabba">Uruhabba - The Village Fest</a></li> -->
</ul>
</div>
</li>
<li><a href="board.html">Board of Trustees</a></li>
</ul>
</div>
</div>
<div class="item"
onmouseover="showSubmenu(this);">
Visit
<div class="submenu"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="thingstodo.html">Things to Do</a></li>
<li><a href="findyourway.html">Find your Way</a></li>
<li><a
href="https://www.google.co.in/maps/@13.1615025,77.4593968,3a,60y,90t/data=!3m6!1e1!3m4!1s-9UefyZY73ob-pFS-YGTlA!2e0!7i13312!8i6656"
target="_blank">Virtual Tour</a></li>
</ul>
</div>
</div>
<div class="item larger-font"
onmouseover="showSubmenu(this);">
Support
<div class="submenu"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="support.html">Support Us</a></li>
<!-- <li>
<a href="vardan.html">Join Vardān</a>
<div class="sub-submenu">
<ul>
<li><a href="friendsofng.html">Friends of Nrityagram</a></li>
<li><a href="ngangels.html">Nrityagram Angels</a></li>
</ul>
</div>
</li> -->
<li><a href="donate.html">Donate</a></li>
<li><a href="corpusfund.html">Support the Corpus Fund</a></li>
<li><a href="otherwaystogive.html">Other ways to Give</a></li>
<li><a href="sponsorship.html">Sponsorship</a></li>
</ul>
</div>
</div>
<div class="item"
onmouseover="hideAllSubmenus();">
<a href="press.html">Press</a>
</div>
<div class="item"
onmouseover="showSubmenu(this);">
Media
<div class="submenu-last"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="showtime.html">Showtime</a></li>
<li><a href="behindthescenes.html">Behind the Scenes</a></li>
<li><a href="lifeatng.html">Life at Nrityagram</a></li>
<li><a href="downtime.html">Downtime</a></li>
</ul>
</div>
</div>
</div>
<div class="whitemenu">
<div class="item"
onmouseover="showSubmenu(this);">
Ensemble
<div class="submenu"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="ensemble.html">Nrityagram Ensemble</a></li>
<li>
<a href="repertoire.html">Repertoire</a>
<div class="sub-submenu">
<ul>
<li><a href="repertoire.html#sri">Śrī: In Search of the Goddess</a></li>
<li><a href="repertoire.html#ansh">Ansh</a></li>
<li><a href="repertoire.html#sspace">Sacred Space</a></li>
<li><a href="repertoire.html#pratima">Pratimā: Reflection</a></li>
<li><a href="repertoire.html#sriyah">Śriyaḥ</a></li>
<li><a href="repertoire.html#samhara">Saṃhāra</a></li>
<li><a href="repertoire.html#samyoga">Saṃyoga</a></li>
<li><a href="repertoire.html#lovelong">Songs of Love and Longing</a></li>
<li><a href="repertoire.html#yadu">Yadunandana</a></li>
<li><a href="repertoire.html#ahuti">Āhuti</a></li>
</ul>
</div>
</li>
<li><a href="performancemap.html">Performances</a></li>
</ul>
</div>
</div>
<div class="item"
onmouseover="showSubmenu(this);">
School
<div class="submenu"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="gurukula.html">Nrityagram Gurukula</a></li>
<li><a href="danceprof.html">Dance Professionals</a></li>
<li>
<a href="danceunlimited.html">Dance Unlimited</a>
<div class="sub-submenu">
<ul>
<li><a href="danceunlimited.html#residential">Residential Workshops</a></li>
<li><a href="danceunlimited.html#parttime">Non-Residential Training</a></li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<div class="item"
onmouseover="showSubmenu(this);">
Community
<div class="submenu"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="danceaware.html">Dance Awareness</a></li>
<li><a href="villageoutreach.html">Village Outreach</a></li>
<li><a href="supportingartists.html">Supporting Artists</a></li>
<li>
<a href="popularisingarts.html">Popularising the Arts</a>
<div class="sub-submenu">
<ul>
<li><a href="popularisingarts.html#vasant">Vasantahabba</a></li>
<li><a href="popularisingarts.html#ajji">Ajji Kathegaḷu</a></li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<div class="item"
onmouseover="showSubmenu(this);">
People
<div class="submenu-last"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="protima.html">Protima Gauri</a></li>
<li><a href="surupa.html">Surupa Sen</a></li>
<li><a href="pavithra.html">Pavithra Reddy</a></li>
<li><a href="lynne.html">Lynne Fernandez</a></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class="container"
onmouseover="hideAllSubmenus();">
<div id="masthead">
<picture>
<source srcset="https://res.cloudinary.com/nrityagram/image/upload/v1689234085/dancecommons-desk_u2er8f.png"
media="(min-width: 768px)">
<source srcset="https://res.cloudinary.com/nrityagram/image/upload/v1689234113/ipad/dancecommons-ipad_on8uj1.png"
media="(min-width: 425px)">
<img src="https://res.cloudinary.com/nrityagram/image/upload/v1689234209/mobile/dancecommons-mobile_c45p49.png"
class="masthead-background-img" />
</picture>
<div id="masthead-text"
class="animated fadeInDown slower">
Dance<br />Commons
</div>
</div>
<content>
<pullquote class="animated fadeInLeft slower">
<span>“Do you believe,</span>
<span>as I do,</span>
<span>that someone</span>
<span>in our hamlet</span>
<span>is keeping</span>
<span>the fire alive?”</span>
<span class="credit">Thich Nhat Hanh</span>
</pullquote>
<div>
<article>
<p>
Whoever speaks of art, speaks of it being a universal language. Art breaks barriers, communicates across
boundaries,
and can unite hearts and souls.
</p>
<p>
It is with such a spirit of universality, we wish to invite young dancers to discover the magic of a
community for
Indian classical dance. As a young dancer, have you wished for a community who understands you, with whom
you can
share
learning and together chart your artistic journey? Along with sharing resources and knowledge, a community
is also a
space for support and solidarity.
</p>
<div class="ngtitle center-txt">
Can we together imagine such a Dance Commons?
</div>
<p>
The future lies with the youth and that’s why we would like to begin these conversations with young
dancers, to
engage,
participate, and interrogate this idea of an artistic community in today’s landscape through dialogue.
This is just
the
first step in what we envisage as an intergenerational effort, with younger dancers and stalwarts, to
build a robust
and
vibrant community for Indian classical dance.
</p>
<p>
We invite young classical Indian dancers for a dialogue on 19th and 20th August, 2023 to ideate and shape
what a
community for
Indian classical dance could be.
</p>
<p>
Dance Commons is not a dance workshop. It is an event for young dancers to meet each other and imagine
what a
community
for and of Indian classical dance could be.
</p>
<p>
Some questions we will explore together:
<ul>
<li>
How can we create a community of Indian classical dancers to foster mutual growth and solidarity?
</li>
<li>
What specific issues can we bring to the table that the community can address together?
</li>
<li>
How do we share knowledge and resources to strengthen our artistic practice and futures?
</li>
</ul>
</p>
<p>
This, we believe, will encourage us to be stronger as a group and more resilient as dancers.
</p>
<p>
As a young dancer, you can meet other like-minded passionate dancers and be part of shaping a community
that will
benefit young dancers everywhere.
</p>
<p>
Join us to embrace and extend this idea of space and community.
</p>
<p>
<b>19 and 20 August, 2023</b>
<br />
<b>At Nrityagram, Hessaraghatta, Bangalore</b>
</p>
</article>
<article>
<div class="ngtitle center-txt">
Agenda
</div>
<p>
<b>Day 1</b>
<br>
19 August, 2023
<br>
10:30am to 4pm
<br>
Session 1: Introductions and goals for the day
<br>
Session 2: Collective vision for the community
<br>
Session 3: Landscape of stakeholders
</p>
<p>
<b>Day 2</b>
<br>
20 August, 2023
<br>
10:30am to 4pm
<br>
Session 4: Ideas for implementation
<br>
Session 5: Logistics and next steps
</p>
</article>
<article>
<div class="ngtitle center-txt">
Registration and Payment
</div>
<p>
Please register by sharing your details and a payment of ₹500 as registration fee to confirm
participation.
<br>
Limited space so register soon.
<br>
Registrations close on 29th July, 2023.
</p>
<p>
<b>Note</b>
<ul>
<li>Lunch and refreshments will be provided</li>
<li>We are not able to cover transport costs or provide lodging for participants</li>
<li>Write to us for help in finding accommodation <a href="mailto:[email protected]"
class="bodytxt">[email protected]</a></li>
</ul>
</p>
<p>
<b>To register scan QR code or use the <a href="https://forms.gle/CxQKkmRAoaruACUh8"
target="_blank"
class="bodytxt">link</a></b>
</p>
<div class="photowrapper quarter-width">
<img src="https://res.cloudinary.com/nrityagram/image/upload/v1689254717/Dance_Commons_RSVP_link_QR_Code_free_vhjbpq.png"
alt="QR code for the Dance Commons Registration Form" />
</div>
</article>
<article>
<p>
<b>Queries</b> Write to <a href="mailto:[email protected]"
class="bodytxt">[email protected]</a>
</p>
</article>
</div>
</content>
<footer>
<div class="center">
Nrityagram is a one-of-a-kind community of artistes, where dance is a way of life
</div>
<div>
<span>
<a href="mailto:[email protected]"
target="_blank"><img src="/img/social/envelope-regular.svg"
style="width: 0.8rem; height: 0.8rem;"
alt="https://fontawesome.com/license"> [email protected]</a>
</span>
<span><a href="tel:+918028466312"><img src="/img/social/phone-alt-solid.svg"
style="width: 0.8rem; height: 0.8rem;"
alt="https://fontawesome.com/license"> +91 80 28466312 / 3 / 4</a></span>
</div>
<div class="address">
<p>
Nrityagram, Hessaraghatta Post, Kodihalli Village, Bangalore 560088
</p>
<p>
<span>
<b>VISIT</b> 10am - 2pm | Friday, Saturday and Sunday
</span>
</p>
<p>
<b>CLOSED</b> Mondays, National, State and other School Holidays | Call to Confirm
</p>
</div>
<div class="copyright-credits">
<div class="is-desk">
<p>
<a href="privacypolicy.html">Privacy Policy</a> | <a href="termsconditions.html">Terms &
Conditions</a> | <a href="sitecredits.html">Site Credits</a>
</p>
<p>
© 2024 Nrityagram | All Rights Reserved
</p>
</div>
<div class="is-mobile">
<p>
<a href="privacypolicy.html">Privacy Policy</a> | <a href="termsconditions.html">Terms &
Conditions</a> | <a href="sitecredits.html">Site Credits</a>
</p>
<p>
© 2024 Nrityagram | All Rights Reserved
</p>
</div>
</div>
<div class="sm-icons">
<a href="https://calendar.google.com/calendar/embed?src=nrityagram.org_qbkn1gon81ldld7ktpk0afr3pk%40group.calendar.google.com&ctz=Asia%2FKolkata"
target="_blank">
<img src="https://res.cloudinary.com/nrityagram/image/upload/v1581001999/mobile/calendar_iac3da.png"
alt=""
class="icon-img"
loading="lazy" />
</a>
<!-- <a href="#" target="_blank">
<img src="img/social/blog.png" alt="" class="icon-img" loading="lazy" />
</a> -->
<a href="https://www.facebook.com/nrityagram/"
target="_blank">
<img src="https://res.cloudinary.com/nrityagram/image/upload/v1581001999/mobile/facebook_spxum4.png"
alt=""
class="icon-img"
loading="lazy" />
</a>
<a href="https://www.instagram.com/nrityagram/"
target="_blank">
<img src="https://res.cloudinary.com/nrityagram/image/upload/v1581001999/mobile/instagram_fehlgm.png"
alt=""
class="icon-img"
loading="lazy" />
</a>
<a href="https://www.youtube.com/user/Nrityagram"
target="_blank">
<img src="https://res.cloudinary.com/nrityagram/image/upload/v1581001999/mobile/youtube_dxvsxz.png"
alt=""
class="icon-img"
loading="lazy" />
</a>
</div>
<div class="copyright-credits smaller">
<div class="is-desk">
<p>
Nrityagram is a Project of Odissi Dance Centre, a Public Charitable Trust | Registration # E
7242 MUMBAI dated 23/07/1979
</p>
</div>
<div class="is-mobile">
<p>
Nrityagram is a Project of Odissi Dance Centre, a Public Charitable Trust | Registration # E
7242 MUMBAI dated 23/07/1979
</p>
</div>
</div>
</footer>
</div>
<ul class="socialmedia-sidebar">
<li contact-descr="+91 80 28466312 / 3 / 4">
<a href="tel:+918028466312">
<img src="img/social/phone.png"
loading="lazy" />
</a>
</li>
<li contact-descr="[email protected]">
<a href="mailto:[email protected]"
target="_blank">
<img src="img/social/email.png"
loading="lazy" />
</a>
</li>
<li contact-descr="Events Calendar">
<a href="https://calendar.google.com/calendar/embed?src=nrityagram.org_qbkn1gon81ldld7ktpk0afr3pk%40group.calendar.google.com&ctz=Asia%2FKolkata"
target="_blank">
<img src="img/social/calendar.png"
loading="lazy" />
</a>
</li>
<!-- <li contact-descr="Blog">
<a href="#" target="_blank">
<img src="img/social/blog.png" loading="lazy" />
</a>
</li> -->
<li>
<a href="https://www.facebook.com/nrityagram/"
target="_blank">
<img src="img/social/facebook.png"
loading="lazy" />
</a>
</li>
<li>
<a href="https://www.instagram.com/nrityagram/"
target="_blank">
<img src="img/social/instagram.png"
loading="lazy" />
</a>
</li>
<li>
<a href="https://www.youtube.com/user/Nrityagram"
target="_blank">
<img src="img/social/youtube.png"
loading="lazy" />
</a>
</li>
</ul>
<!-- partial -->
<script src="/scripts/script.js"></script>
</body>
</html>