-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathevents.html
More file actions
1319 lines (1103 loc) · 47.5 KB
/
events.html
File metadata and controls
1319 lines (1103 loc) · 47.5 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
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
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!--
############################################################
Developed by Jesvi Jonathan
############################################################
This is in regards to Takshashila cultural event & as a project to my portfolio..
############################################################
Yes, Everything you see is fully hardcoded manually & all elements used are designed from scratch. I would like to flex on the fact that..
I have built 2 separate libraries for this project,
One for the animations (JOS.js | v0.3) & another one
For single page application (J-SPA | v0.1)..
The animation library is ready for production but the SPA is still in development & needs work for before publication.. be sure to check it out when it's ready..
Hope you like my work, contact me for anything :)
I'm The Best !
############################################################
DO NOT KANG/STEAL OR MODIFY THE CODE WITHOUT MY PERMISSION !
############################################################
Takshashila Website : https://github.com/jesvijonathan/Takshashila-2023-Web-Design
Hosted On : http://cittakshashila.in/ & https://github.com/jesvijonathan/Takshashila-2023-Web-Design
About Jesvi Jonathan: https://jesvi.pythonanywhere.com
############################################################
Last Updated : April 4th 2023
-->
<html id="htmll">
<head>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>Events | Takshashila 2023</title>
<meta name=description content="Takshashila, an event organized In regards to annual cultural event conducted in Chennai Institute Of Technology.">
<meta name=author content="Chennai Institute Of Technology">
<meta name=keywords content="TAKSHASHILA, CULTURAL, CIT, CHENNAI, SYMPOSIUM, EVENT, COLLEGE, COMPETITION, INSTITUTE, TECHNOLOGY, DESIGN">
<meta name=revised content="Takshashila, 7/2/2023">
<meta name=theme-color content=#282828>
<link rel=icon type=image/x-icon href=favicon.png>
<link rel=apple-touch-icon sizes=180x180 href=favicon.png>
<meta name=thumbnail content=favicon.png>
<meta charset="UTF-8" />
<meta property="og:title" content="Events | Takshashila 2023" />
<meta property="og:description" content="Takshashila, an event organized In regards to cultural event conducted in Chennai Institute Of Technology." />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://www.cittakshashila.in/image/og_image.png" />
<meta property="og:url" content="https://www.cittakshashila.in/events#/dj_night" />
<meta property="og:site_name" content="CIT - Takshashila 2023">
<meta name="twitter:image:alt" content="Takshashila 2023">
<meta name="twitter:title" content="Events | Takshashila 2023">
<meta name="twitter:description" content="Takshashila, an event organized In regards to cultural event conducted in Chennai Institute Of Technology.">
<meta name="twitter:image" content="https://www.cittakshashila.in/image/og_image.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@cittakshashila" />
<meta name="twitter:image:alt" content="Takshashila 2023">
<script src=./js/jquery.min.js referrerpolicy=no-referrer></script>
<script src="./butter.js"></script>
<link rel="stylesheet" href="./style.css" />
<link rel=manifest href=manifest.json>
<meta name="robots" content="all" />
<noscript>
This website requires JavaScript to function properly. Please enable JavaScript in your browser.
</noscript>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-RDPMEBQGBQ"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-RDPMEBQGBQ");
</script>
</head>
<div class="curtain" id="curtain" style="
position: fixed;
height: 100%;
width: 100%;
background: rgba(16, 16, 16, 0.878);
backdrop-filter: blur(10px);
z-index: 999;
transition: 0.7s ease-in-out;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
">
<svg width="1000" height="1000" id="logo_load" viewBox="0 0 1000 1000" fill="none" style="scale: 0.3; fill: transparent; opacity: 0" class="main_logo_1">
<path d="m413.288 213.138 3.801 7.084 52.496 97.577c7.58 12.701 10.576 22.199 16.631 42.061l-8.305 17.978-15.681 34.092c-6.542 11.236-11.031 16.933-19.957 26.564-12.355 14.611-22.325 33.36-21.858 34.534 5.217 13.089 4.793 20.059 0 32.051-40.644-31.623-19.73-81.195-7.603-114.401.199-13.367-4.143-25.815-19.006-51.358-10.382 1.017-15.474-1.769-19.482-15.496-17.899-5.826-28.494-6.192-47.517-6.199 2.05.318 1.87-.228 21.382 9.741 12.758 5.696 28.326 23.002 26.135 50.03-2.605 17.024-23.9 38.506-52.744 52.686 3.711.519 9.978-.443 9.503 1.328-18.177 12.24-30.277 18.077-51.318 28.779-41.34 29.663-50.694 54.161-47.042 98.731 2.56 18.827 7.109 32.657 13.78 45.16 5.702 11.322 14.883 21.853 18.532 36.305.593-12.245 1.375-15.295 3.326-15.939 5.756 22.082 17.897 31.488 47.517 45.603 32.099 16.819 46.66 26.129 66.999 47.373-1.771-10.826-3.194-16.449-7.128-27.45 54.169 69.953 59.871 139.021 7.603 224.028 65.446-52.89 102.711-78.535 162.508-110.686 5.012-5.887 5.033-9.068 1.9-14.61-39.878-29.573-55.61-44.607-77.927-71.725-19.508-29.166-30.618-46.327-48.943-69.953 29.585 8.645 44.796 23.476 70.325 61.541l14.73-9.74c-7.496-14.24-10.855-21.082-14.73-30.376l39.666-9.297c7.814 15.608 11.491 26.245 17.582 46.488 17.058-1.696 24.539-.719 37.063 1.771l-6.88-28.509h16.631c19.255 16.798 31 24.691 53.219 36.747 11.092-25.762 32.787-42.06 64.623-54.014l8.791-5.756c-4.358-1.644-38.152-23.401 8.79-5.756l17.582-18.152c-43.716-30.549-14.255-56.229 11.404-20.366 7.902-18.047 8.701-30.999 5.702-57.557l-3.802-9.74-15.205-42.946-18.056-3.985-8.078-29.221c7.366.097 12.079 3.236 20.907 11.069-18.399-66.855-49.715-79.033-104.062-69.954.272 2.648 1.748 4.208 6.177 7.084 7.444.443 23.854 4.25 29.936 15.939 3.643 6.346 10.359 22.403 8.078 35.862-.95 3.838-3.897 12.308-8.078 15.496-.937-1.932-1.623 20.555-34.212 17.71-32.589-2.845-50.97-52.585-17.581-77.48l4.276-14.611c-1.673-8.681-14.503-50.299-21.858-55.785-2.029-4.568-4.29-7.27 1.178-10.895 6.281 0-54.314-72.193-85.758-107.318-25.849-32.586-17.74-65.821-10.453-78.365 17.866-43.212 55.911-54.31 72.7-54.458-14.065-10.271-34.687-11.068-43.24-10.183-33.072 2.48-59.08 18.153-67.949 25.679-31.551 19.835-51.16 71.725-57.02 95.19Z" stroke="#fff" stroke-linejoin="round" stroke-width="4" />
</svg>
<style>
@media (max-width: 600px) {
#logo_load {
scale: 0.8 !important;
}
}
.main_logo_1 {
z-index: 1000;
height: 41vw !important;
width: 32vw !important;
animation: svg_design 4s infinite;
}
@keyframes svg_design {
0% {
display: block;
stroke-dasharray: 580;
opacity: 0;
transform: scale(1);
}
20% {
opacity: 1;
fill: transparent;
}
50% {
fill: white;
stroke-dasharray: 100;
transform: scale(1.1);
}
85% {
stroke-opacity: 0;
}
94% {
display: block;
fill: rgb(255, 255, 255);
opacity: 1;
transform: scale(1);
}
100% {
display: block;
stroke-dasharray: 580;
opacity: 0;
transform: scale(1);
}
}
</style>
</div>
<div class="open_mob_fil" id="open_mob_fil">
<div class="eve_options" id="eve_options">
<div class="eop eop_active"
value="true" onclick="toggle(this, '.eop', 'eop_active');notify('Displaying all events !', 5000);"
data-type="all">All Events</div>
<div class="eop "
value="false" id="technicalmob" onclick="toggle(this, '.eop', 'eop_active');notify('Technical | Filter Applied !',5000)" data-type="Technical">Technical Events</div>
<div class="eop"
value="false" id="nontechnicalmob" onclick="toggle(this, '.eop', 'eop_active');notify('Non-Technical | Filter Applied !',5000)" data-type="Non-Technical">Non-Technical Events</div>
<div class="eop"
value="false" id="workshopsmob" onclick="toggle(this, '.eop', 'eop_active');notify('Workshops | Filter Applied !',5000)" data-type="Workshops">Workshops</div>
<div class="eop"
value="false" id="proshowsmob" onclick="toggle(this, '.eop', 'eop_active');notify('Pro Shows | Filter Applied !',5000);" data-type="Pro Shows">Pro Shows</div>
<div class="eop"
value="false" onclick="toggle(this, '.eop', 'eop_active');notify('Online | Filter Applied !',5000);" data-type="Online">Online</div>
<div class="eop"
value="false" onclick="toggle(this, '.eop', 'eop_active');notify('Sports | Filter Applied !',5000);" data-type="Sports">Sports</div>
<a class="eop eop_r" href="/"
value="false" onclick="toggle(this, '.eop', 'eop_active');notify('Returning to home page !',5000);" data-type="return">Return to Home Page</a>
</div>
</div>
<body class="eve_body" id="bodyy">
<!-- <video autoplay muted loop id="myVideo"><source src="./pexels-tima-miroshnichenko-7985887.mp4" type="video/mp4" /></video> -->
<img id="myVideo" src="./pexels-tima-miroshnichenko-7985887.webp" oncontextmenu="return false;" type="image/webp" />
<div class="cursor" id="cursor">
<div class="cursor_border" id="cursor_border">
<div class="cursor_circle" id="cursor_circle"></div>
</div>
</div>
<div class="noise-container"></div>
<header class="eve_head">
<a
class="ev_title title_font link_cur"
data-text="Return To Main Page"
href="/"
>
Takshashila
</a>
<div class="mav_bar_cont">
<a class="nav_bar_links link_cur" href="./#about"data-text="About Us">About</a>
<a class="nav_bar_links link_cur" href="./events.html"data-text="Events List">Events</a>
<a class="nav_bar_links link_cur"href="./events.html#/proshows" data-text="Pro-Shows">
Pro Shows
</a>
<a class="nav_bar_links link_cur"href="./events.html#/workshops" data-text="Workshops">
Workshops
</a>
<a class="nav_bar_links link_cur" href="./index.html"data-text="Contact Us">Contact</a>
</div>
</header>
<div class="eve_func" id="navbar">
<div class="eve_path_con_par">
<div class="title link_cur" data-text="Change Graphics" onclick=graphic()>Events</div>
<div class="eve_path_con" id="eve_path">
<a class="link_cur" data-text="Event Type" href="./events.html">/ Error</a>
<a class="link_cur" data-text="Event Name" href="./events.html">/ Loading</a>
</div>
</div>
<div class="search"></div>
<div
class="filt_icon fa fa-navicon"
id="filt_icon"
data-filt_menu="0"
onclick="open_mob_fil(this)"
></div>
<div class="title_back_con" onclick="history.back();" id="baclk_w">
<span class="fa fa-arrow-left"></span>
<div>Back</div>
</div>
<div class="filter" id="filter">
<button
class="fil_bub link_cur eve_active "
value="true" onclick="toggle(this, '.fil_bub', 'eve_active');notify('Displaying all events !', 5000)"
data-type="all"
data-text="All Events"
>
All
</button>
<button
class="fil_bub link_cur "
value="false" id="technical" onclick="toggle(this, '.fil_bub','eve_active');notify('Technical | Filter Applied !',5000)" data-type="Technical"
data-text="Technical Events"
>
Technical
</button>
<button
class="fil_bub link_cur "
value="false" id="nontechnical" onclick="toggle(this, '.fil_bub','eve_active');notify('Non-Technical | Filter Applied !',5000)" data-type="Non-Technical"
data-text="Non-Technical Events"
>
Non-Technical
</button>
<button
class="fil_bub link_cur "
value="false" id="workshops" onclick="toggle(this, '.fil_bub','eve_active');notify('Workshops | Filter Applied !',5000)" data-type="Workshops"
data-text="Workshops"
>
Workshops
</button>
<button
class="fil_bub link_cur "
value="false" id="proshows" onclick="toggle(this, '.fil_bub','eve_active');notify('Pro Shows | Filter Applied !',5000);" data-type="Pro Shows"
data-text="Pro Shows"
>
Pro Shows
</button>
<button
class="fil_bub link_cur "
value="false" onclick="toggle(this, '.fil_bub','eve_active');notify('Online | Filter Applied !',5000);" data-type="Online"
data-text="Online"
>
Online
</button>
<button
class="fil_bub link_cur "
value="false" onclick="toggle(this, '.fil_bub','eve_active');notify('Sports | Filter Applied !',5000);" data-type="Sports"
data-text="Sports"
>
Sports
</button>
</div>
</div>
<div class="main main_eve" id="butter">
<div class="eve_list_cont" id="eve_list_cont">
<!-- <div class="eve_card">
<img
class="eve_img"
src="./9d9dd9e4-e84a-402e-ba8f-daa659e6e6c5-PhotoWord_003 1.png"
/>
<div class="eve_ma">
<div class="eve_title">Plush</div>
<div class="eve_tag">Dance It All The Way</div>
</div>
<div class="eve_desc">
<div>
Dream World Film Festival (DWFF) is an annual 2-day event conducted
by VIT Film Society. It acts as an interactive platform for aspiring
filmmakers and cinema aficionados to exhibit their skills while
gaining a plethora of knowledge. Exhilarating events on topics
ranging from film-making technicalities to cinema trivia are also
incorporated. DWFF 2023 will feature a line up of industry experts
to bestow their knowledge and share their experiences in the various
aspects of film making. The participants will be given time to shoot
and produce their own movies, giving them first hand experience of
film making and providing them a medium to use the knowledge they
possess. For the final day, movies filmed and produced by the
participants will be screened and judged by experienced film makers,
hence declaring the winners who will be awarded prize money,
bringing an end to the 2 day long film festival.
</div>
</div>
<div class="eve_bar">
<div class="eve_min">
<div>Technical Event</div>
<div class="eve_line"></div>
<div>22 March 2023</div>
</div>
<div class="eve_button">View</div>
</div>
</div> -->
</div>
<div class="eve_detail_cont" id="eve_detail_cont">
<a class="eve_mobile_reg mob" href="" id="eve_reg_link_2" onclick="alert('Registrations are closed !')">Register | <div id="price_2"> </div></a>
<div class="eve_detail_1_3_cont mob">
<a
class="eve_detail_1_3_link link_cur"
data-text="Latest Posts"
id="link_con_insta"
target="_blank"
href="https://www.instagram.com/cittakshashila/"
>
Instagram Post
</a>
<a
class="eve_detail_1_3_link link_cur"
data-text="Shareable Link"
id="link_con_share"
onclick="copyToClipboard(); notify('Link Copied To Clipboard !',5000)"
target="_blank"
>
Share Link
</a>
<a
class="eve_detail_1_3_link link_cur"
data-text="Download Brochure"
id="link_con_download"
onclick="print();notify('Download Event As PDF');">
Download
</a>
</div>
<div class="eve_detail_1">
<div class="eve_detail_1" style="background-color: transparent;">
<img
style="height: 20vw; width: 78%"
src="./Group 304.png"
id="eve_img"
/>
<div class="eve_detail_1_2">
<div class="eve_detai_1_2_tag_cont ">
<div class="eve_detai_1_2_tag_cont" id="tag_con_2">
</div>
</div>
</div>
<div class="eve_detail_1_3">
<div class="eve_detail_1_3_cont">
<a
class="eve_detail_1_3_link link_cur"
data-text="Latest Posts"
id="link_con_insta"
target="_blank"
href="https://www.instagram.com/cittakshashila/"
>
Instagram Post
</a>
<a
class="eve_detail_1_3_link link_cur"
data-text="Shareable Link"
id="link_con_share"
onclick="copyToClipboard(); notify('Link Copied To Clipboard !',5000)"
target="_blank"
>
Share Link
</a>
<a
class="eve_detail_1_3_link link_cur"
data-text="Download Brochure"
id="link_con_download"
onclick="print();notify('Download Event As PDF');"
>
Download
</a>
</div>
</div>
<div class="eve_detail_1_4">
<a
class="eve_detail_reg link_cur"
data-text="Register Now"
id="eve_reg_link"
href=""
onclick="alert('Registrations are closed !')"
>Register | <div id="price"> </div>
</a>
</div>
</div>
</div>
<div class="eve_detail_2">
<div class="eve_detail_2_1" id="eve_title_con">
<div class="eve_detail_2_1_1"></div>
<div class="eve_edtail_2_1_tag"></div>
</div>
<div class="eve_detail_2_2" id="eve_detail_2_2">
<div class="eve_detail_2_2_1">Description</div>
<div class="eve_detail_2_2_tag"></div>
</div>
<div class="eve_detail_2_2" id="rullee">
<div class="eve_detail_2_2_1" style="text-decoration: none; border: none; margin: none;">
<div class="rule_1">Rules</div>
<div class="rule_2 rule_active link_cur" data-text="Preliminary Rules" id="prel"onclick="rule_switch(0);">Prelims</div>
<div class="rule_2 link_cur" data-text="Finals Rules" id="fina" onclick="rule_switch(1);">Finals</div></div>
<div class="eve_detail_2_2_tag" id="eve_detail_rules"></div>
</div>
<div class="eve_detail_2_3">
<div class="eve_detail_horiz">
<div class="eve_sec" id="hori">
<div class="eve_detail_2_2_1">Prize</div>
<div class="eve_sec_con" id="prize"></div>
</div>
<div class="eve_lin"></div>
<div class="eve_sec">
<div class="eve_detail_2_2_1">Details</div>
<div class="eve_sec_con" id="eve_details">
<div class=""></div>
<div class=""></div>
<div class=""></div>
</div>
</div>
<div class="eve_lin"></div>
<div class="eve_sec">
<div class="eve_detail_2_2_1">Contact</div>
<div class="eve_sec_con" id="eve_contact">
<div class="link_cur" data-text="Contact"></div>
<div class="link_cur" data-text="Contact Email"></div>
<div class="link_cur" data-text="Contact Phone"></div>
</div>
</div>
</div>
</div>
<div class="eve_detail_2_4"></div>
</div>
</div>
<footer>
<div class=footer id=fff>
<div class=foot_1>
<div class=foot_1_1>
<a class=title_font href="/">Takshashila</a>
<div class="line line_2"></div>
<div class=fot_loc>
<a class="foot_desc_title link_cur" data-text="Our Institution" href="https://www.citchennai.edu.in/" target=_blank> Chennai Institute Of Technology </a>
<a class="foot_desc link_cur" data-text=Location href="https://goo.gl/maps/ZqzfRRfRvjpUHnAy5" target=_blank> Kundrathur, Chennai, Tamil Nadu, PIN : 600069 </a>
</div>
</div>
<div class=foot_1_2>
<div class=foot_1_2_1>
<div class=foot_1_2_1_title>Socials</div>
<div class=foot_1_2_1_list>
<a class="foot_1_2_1_list_item link_cur" data-text=Instagram href="https://www.instagram.com/cittakshashila/" target=_blank> Instagram </a>
<a class="foot_1_2_1_list_item link_cur" data-text=Facebook href="https://www.facebook.com/people/CIT-Takshashila/100064056814271/" target=_blank> Facebook </a>
<a class="foot_1_2_1_list_item link_cur" data-text="Linked In" href="https://www.linkedin.com/in/cittakshashila" target=_blank> Linked In </a>
<a class="foot_1_2_1_list_item link_cur" data-text=Email href="mailto:takshashila@citchennai.net" target=_blank> Email </a>
<a class="foot_1_2_1_list_item link_cur" data-text=Phone href="tel:+919344326874" target=_blank> Phone </a>
</div>
</div>
<div class=line_3></div>
<div class=foot_1_2_1>
<div class=foot_1_2_1_title>Events</div>
<div class=foot_1_2_1_list>
<a class="foot_1_2_1_list_item link_cur" data-text="Technical Events" href="./events.html#/technical" target=_blank> Technical </a>
<a class="foot_1_2_1_list_item link_cur" data-text="Non-Technical Events" href="./events.html#/nontechnical" target=_blank> Non Technical </a>
<a class="foot_1_2_1_list_item link_cur" data-text=Workshops href="./events.html#/workshops" target=_blank> Workshops </a>
<a class="foot_1_2_1_list_item link_cur" data-text=Pro-shows href="./events.html#/proshows" target=_blank> Pro-Shows </a>
<a class="foot_1_2_1_list_item link_cur" data-text="Other Events" href="./events.html" target=_blank> Others </a>
</div>
</div>
<div class=line_3></div>
<div class=foot_1_2_1>
<div class=foot_1_2_1_title>Website</div>
<div class=foot_1_2_1_list>
<a class="foot_1_2_1_list_item link_cur" data-text="Terms & Conditions" href="./cookie_policy.md" target=_blank> Terms & Policy </a>
<a class="foot_1_2_1_list_item link_cur" data-text="Our Services" href="./events.html" target=_blank> Service </a>
<a class="foot_1_2_1_list_item link_cur" data-text="Your Account" onclick="notify('Not available !',5000)" target=_blank> Account </a>
<a class="foot_1_2_1_list_item link_cur" data-text="Official Website" href="https://www.citchennai.edu.in/" target=_blank> College Site </a>
<a class="foot_1_2_1_list_item link_cur" data-text=Developer href="https://www.instagram.com/_jesvi_" target=_blank> Developer </a>
</div>
</div>
<div class=line_3></div>
<div class=foot_1_2_1>
<div class=foot_1_2_1_title>Support</div>
<div class=foot_1_2_1_list>
<a data-text="Our Team" class="foot_1_2_1_list_item link_cur" href="./credits.html" target="_blank">Takshashila Team</a>
<a data-text="Report Errors" class="foot_1_2_1_list_item link_cur" href="mailto:takshashila@citchennai.net" target="_blank">Report</a>
<a data-text=:) class="foot_1_2_1_list_item link_cur" href="jesvi.pythonanywhere.com">Developer</a>
<a data-text="Contact Us" class="foot_1_2_1_list_item link_cur" href="mailto:takshashila@citchennai.net" target="_blank">Contact Us</a>
<a data-text=Credits class="foot_1_2_1_list_item link_cur" href="./credits.html" target="_blank">Credits</a>
</div>
</div>
</div>
</div>
</div>
<div class=line_5></div>
<div class="footer f_end">
<div class=foot_2>
<div class=foot_2_1>
<div class="foot_2_1_1 link_cur" data-text="Move To" href="/">CitTakshashila.in</div>
<div class=line_4></div>
<div class="foot_2_1_1 no_mob link_cur" data-text="Go To" href="/">All Rights Reserved</div>
<div class="line_4 no_mob"></div>
<div class="foot_2_1_1 link_cur" data-text="View Terms & Policy" href="/cookie_policy.md">Copyright ©2023</div>
<div class=line_4 id=line_4 style=display:none></div>
</div>
<a href=https://jesvi.pythonanywhere.com target=_blank id=easter onmouseenter='document.getElementById("htmll").style.mixBlendMode="difference"' onmouseleave='document.getElementById("htmll").style.mixBlendMode="unset"' data-text="( ͡⚆ ͜ʖ ͡⚆)" class="foot_2_2 link_cur">Website By Jesvi Jonathan 🤖</a>
</div>
</div>
</footer>
</div>
<div class="notify">
<div id="not-cont" class="notify-content">
<a class="hno underline" target="_blank" href="#s0"></a>
Sign in to your account
</div>
<div class="notify-button" onclick="accept_cookie()">Dismiss</div>
</div>
</body>
</html>
<script>
// Notify flyer function //
function accept_cookie() {
document.querySelector(".notify").style.padding = "0vw 0vw";
document.querySelector(".notify").style.opacity = "0";
document.querySelector(".notify").style.zIndex = "-1";
}
function deccept_cookie() {
document.querySelector(".notify").style.padding = "1.8vw 1vw";
document.querySelector(".notify").style.opacity = "1";
document.querySelector(".notify").style.zIndex = "1";
}
function notify(text, timeout) {
document.getElementById("not-cont").innerHTML = text;
// document.querySelector("#not-cont").style.color = "red";
deccept_cookie();
if (timeout != -1) {
setTimeout(function () {
accept_cookie();
}, timeout);
}
}
</script>
<script>
// document.body.style.display = "none";
var mobile = false;
console.log(navigator.userAgent);
if (
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
navigator.userAgent
)
) {
mobile = true;
// var ask1 = alert(
// "Website Under construction & is not supported for mobile devices.\nUse a Desktop/Laptop to view the site.."
// );
// butter.init({
// wrapperId: "butter",
// wrapperDamper: 0.07,
// cancelOnTouch: true,
// });
// document.querySelector("#butter").style.position = "initial";
} else {
const cursor = document.querySelector("#cursor"),
cursor_border = document.querySelector("#cursor_border"),
cursor_circle = document.querySelector("#cursor_circle");
document.addEventListener("mousemove", (event) => {
const mouseX = event.clientX,
mouseY = event.clientY;
(cursor.style.transform = `translate3d(${mouseX - 20}px, ${
mouseY - 20
}px, 0)`),
(cursor.style.transform = `translate3d(${mouseX - 20}px, ${
mouseY - 20
}px, 0)`);
let y = mouseY / window.innerHeight,
x = mouseX / window.innerHeight;
$(".link_cur").hover(
function () {
y <= 0.5
? (cursor_circle.style.transform = "scale(7) translate(10px, 10px)")
: (cursor_circle.style.transform = "scale(7) translate(10px, -10px)"),
(cursor_circle.innerHTML = $(this).data("text"));
},
function () {
(cursor_circle.style.transform = "scale(1)"),
(cursor_circle.innerHTML = "");
}
);
document.addEventListener("mousedown", function () {
cursor_circle.classList.add("cursor_circle_click");
cursor_border.style.background = "white";
// document.body.style.background = "white";
// document.body.style.mixBlendMode = " difference";
// setTimeout(function () {
// cursor_circle.style.transform = `scale(1)`;
// }, 100);
});
document.addEventListener("mouseup", function () {
cursor_circle.classList.remove("cursor_circle_click");
cursor_border.style.background = "transparent";
// document.body.style.mixBlendMode = " unset";
// document.body.style.background = "#282828 ";
});
});
document.addEventListener("mouseout", () => {
let e = event.clientX,
n = event.clientY;
(n <= 0 || e <= 0 || e >= window.innerWidth || n >= window.innerHeight) &&
(cursor.style.display = "none");
}),
document.addEventListener("mouseenter", () => {
cursor.style.display = "block";
});
document.body.style.cursor = "none";
document.getElementById("cursor").style.display = "block";
document.body.style.display = "block";
}
</script>
<script>
// Init variables //
let eve_list_cont = document.getElementById("eve_list_cont");
let eve_detail_cont = document.getElementById("eve_detail_cont");
let eve_path = document.getElementById("eve_path");
let filter = document.getElementById("filter");
let baclk_w = document.getElementById("baclk_w");
let eve_img = document.getElementById("eve_img");
let tag_con = document.getElementById("tag_con");
let tag_con_2 = document.getElementById("tag_con_2");
let link_con_insta = document.getElementById("link_con_insta");
let link_con_download = document.getElementById("link_con_download");
let eve_reg_link = document.getElementById("eve_reg_link");
let eve_title_con = document.getElementById("eve_title_con");
let eve_detail_2_2 = document.getElementById("eve_detail_2_2");
let eve_detail_rules = document.getElementById("eve_detail_rules");
let prize = document.getElementById("prize");
let eve_details = document.getElementById("eve_details");
let eve_contact = document.getElementById("eve_contact");
let hori = document.getElementById("hori");
var eve_card = document.getElementById("eve_card");
var navbar = document.getElementById("navbar");
let filt_icon = document.getElementById("filt_icon");
</script>
<script>
function close_event(e) {
window.history.pushState(
"",
"",
"/events.html"
);
document.title = "Events | Takshashila 2023";
eve_list_cont.style.display = "flex";
eve_detail_cont.style.display = "none";
eve_path.style.display = "none";
filter.style.display = "flex";
baclk_w.style.display = "none";
if (mobile) {
filt_icon.style.display = "block";
}
}
// notify("Loading...");
var back_conter = 0;
window.onpopstate = function (event) {
url_event = null;
close_event();
if (
window.location.href.indexOf("events") != -1 ||
window.location.href.indexOf("events.html") != -1
) {
let parts = window.location.href.split("/");
url_event = parts[parts.length - 1];
if (url_event.indexOf("events") != -1) {
if(back_conter>1){
notify("Loading Home Page..");
history.pushState(null, null, "/");
window.location.reload();
}
else if(back_conter==1){
notify("Press back one more time to return..",5000);
back_conter++;
}
else{
back_conter++;
}
}
} else {
back_conter = 0;
}
};
var url_event;
let load_done = false;
var red_filt = 0;
if (
window.location.href.indexOf("events") != -1 ||
window.location.href.indexOf("events.html") != -1
) {
let parts = window.location.href.split("/");
url_event = parts[parts.length - 1];
if (url_event.indexOf("events") != -1) {
url_event = null;
close_event();
}else{
red_filt = 1;
}
}
var global_event="";
function copyToClipboard() {
// text = window.location.href;
let pathArray = window.location.href.split( '/' );
let protocol = pathArray[0];
let host = pathArray[2];
var url = protocol + '//' + host + "/events.html/"+global_event;
text = url;
if (window.clipboardData && window.clipboardData.setData) {
// Internet Explorer-specific code path to prevent textarea being shown while dialog is visible.
return window.clipboardData.setData("Text", text);
} else if (
document.queryCommandSupported &&
document.queryCommandSupported("copy")
) {
var textarea = document.createElement("textarea");
textarea.textContent = text;
textarea.style.position = "fixed"; // Prevent scrolling to bottom of page in Microsoft Edge.
document.body.appendChild(textarea);
textarea.select();
try {
return document.execCommand("copy"); // Security exception may be thrown by some browsers.
} catch (ex) {
// console.warn("Copy to clipboard failed.", ex);
return prompt("Copy to clipboard: Ctrl+C, Enter", text);
} finally {
document.body.removeChild(textarea);
}
}
}
</script>
<script>
butter.init({
wrapperId: "butter",
wrapperDamper: 0.1,
cancelOnTouch: false,
});
document.querySelector("#butter").style.position = "relative";
</script>
<script>
// document.body.style.display = "none";
// console.log(navigator.userAgent);
if (
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
navigator.userAgent
)
) {
// var ask1 = alert(
// "Website Under construction & is not supported for mobile devices.\nUse a Desktop/Laptop to view the site.."
// );
} else {
document.body.style.display = "block";
}
var jata = null;
var html_list = eve_list_cont;
var inner_details = "";
var json_data;
function set_json(data) {
json_data = data;
}
$(document).ready(function load_json() {
var data;
fetch("events.json",
{
mode: "no-cors",
}) // Call the fetch function passing the url of the API as a parameter
.then((res) => res.json())
.then(function (res) {
data = res;
set_json(res);
// Your code for handling the data you get from the API
for (let i = 0; i < data.length; i++) {
jata = data[i];
inner_details = "";
jata = data[i];
eve_img.src = "./Group 304.png";
// inner_details += '<img class="eve_img" loading="lazy" src="./Group 304.png"/>';
inner_details += '<img class="eve_img eve_img_cardd" oncontextmenu=\'return false;\' loading="lazy" src="' + jata.image + '"/>';
inner_details +=
' <div class="eve_ma"><div class="eve_title">' +
jata.name +
"</div>";
inner_details +=
'<div class="eve_tag">' + jata.tag_line + "</div></div>";
inner_details +=
'<div class="eve_desc"><div>' + jata.description + "</div></div>";
inner_details +=
'<div class="eve_bar"><div class="eve_min"><div>' +
jata.type +
"</div>";
inner_details +=
'<div class="eve_line"></div><div>' + jata.date + "</div></div>";
inner_details += '<div class="eve_button">View</div></div>';
html_list.innerHTML +=
'<div class="eve_card" oncontextmenu="copyToClipboard();notify("Event Link Copied To Clipboard !",5000);return false;" data-type="' +
jata.type + '" onclick="open_event(' +
i +
');">' +
inner_details +
"</div>\n";
if (data[i].name.replace(/\s/g, '_').toLowerCase() == url_event) {
open_event(i);
}
}
load_done = true;
}).then(function (res) {
if(red_filt == 1) {
if (url_event == "workshops" || url_event == "technical" || url_event == "nontechnical" || url_event == "proshows") {
close_event();
if(mobile){
toggle(document.getElementById(url_event + "mob"), '.fil_bub','eop_active');
}
else{
toggle(document.getElementById(url_event), '.fil_bub','eve_active');
}
}
}
})
.catch(function (e) {
// notify("Something Went Wrong :(", 5000);
// alert("Something went wrong :(\nProceed to reload website...\n\n" + e);
// window.location.pathname = "/events";
// window.location.reload();
console.log(e)
alert("Something went wrong :(\nProceed to reload website...\n\n" + e);
});
});
var rule_1_text = "-";
var rule_2_text = "-";
function open_event(e) {back_conter = 0;
baclk_w.style.display = "flex";
eve_list_cont.style.display = "none";
eve_detail_cont.style.display = "flex";
eve_path.style.display = "flex";
filter.style.display = "none";
// eve_img.src = "./Group 304.png";
eve_img.src = "" + json_data[e].image;
//inner div for tag_con from json_data[e].tags
// document.getElementById("eve_reg_link_2").href = json_data[e].register + " ";
document.getElementById("eve_reg_link_2").href = "";
document.getElementById("price_2").innerHTML = "₹"+json_data[e].fee;
// eve_reg_link.href = json_data[e].register + " ";
eve_reg_link.href = "";
document.getElementById("price").innerHTML = "₹"+json_data[e].fee;
tag_con_2.innerHTML = "Entry Fee : ₹"+json_data[e].fee;
// eve_reg_link.href = json_data[e].register + " ";
// for (i = 0; i < json_data[e].tags.length; i++) {
// tag_con.innerHTML +=
// '<div class="eve_detai_1_2_tag">' + json_data[0].tags[i] + "</div>";
// }
link_con_insta.href = json_data[e].instagram;
// document.getElementById("link_con_youtube").href = json_data[e].youtube;
// document.getElementById("link_con_share").href = "";
link_con_download.href = "";
// if(mobile){
// document.getElementById("eve_reg_link_2").href = json_data[e].register;
// document.getElementById("price_2").innerHTML = "| ₹"+json_data[e].fee;
// }
// else{