-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
593 lines (531 loc) · 19.3 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Site Title -->
<title>JWoC: JGEC Winter of Code</title>
<!-- Favicon-->
<link rel="shortcut icon" type="image/png" href="./assets/img/favicon.png" />
<!-- Meta Character & Device Dimension -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<!-- Meta Author, Description, Keywords -->
<meta name="author" content="JWOC ORG" />
<meta
name="description"
content="Hey folks, JWoC (Winter of Code) is back with another new year. A long coding event organised by JGEC helps students to plunge into Open Source Contribution."
/>
<meta
name="keywords"
content="jwoc, 2k22, jgec, winter, developer, code, jgec winter of code, jwoc 2022"
/>
<!-- Meta OG: Site, Title, Description, Image, Link Displayed -->
<meta property="og:site_name" content="JWOC 2K22" />
<meta property="og:title" content="JWOC 2K22" />
<meta
property="og:description"
content="JGEC Winter of Code is a long coding event organised by JGEC helps students to plunge into Open Source Contribution."
/>
<meta property="og:image" content="https://jwoc.tech/assets/img/opengraph.png" />
<meta property="og:url" content="https://jwoc.tech/" />
<!-- Icons -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/boxicons.min.css"
/>
<!-- Address Bar/Tab Color -->
<!-- Mobile -->
<meta name="theme-color" content="#0d1524" />
<!-- Windows -->
<meta name="msapplication-navbutton-color" content="#0d1524" />
<!-- External CSS -->
<link rel="stylesheet" href="./css/libraries/bootstrap.min.css" />
<!-- Main CSS -->
<link rel="stylesheet" href="./css/components/settings.css" />
<link rel="stylesheet" href="./css/components/loader.css" />
<link rel="stylesheet" href="./css/components/footer.css" />
<link rel="stylesheet" href="./css/components/header.css" />
<link rel="stylesheet" href="./css/pages/index.css" />
<!-- External JS -->
<script defer src="./js/libraries/jquery-3.6.0.min.js"></script>
<script defer src="./js/libraries/particles.min.js"></script>
<script defer src="./js/libraries/confetti.min.js"></script>
<!-- Main JS -->
<script defer src="./js/sketch.app.js"></script>
<script defer src="./js/data/event.data.js"></script>
<script defer src="./js/data/sponsors.data.js"></script>
<script defer src="./js/data/team.data.js"></script>
<script defer src="./js/data/faq.data.js"></script>
<script defer src="./js/main.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ESEG18CYHY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-ESEG18CYHY");
</script>
</head>
<body>
<!-- Preloader Start -->
<div id="preloader">
<div class="loader">
<div class="svglayer">
<img src="./assets/img/snowflake.png" alt="Snow Bg" />
<span>
<object data="./assets/img/jwoc_icon.svg"></object>
</span>
</div>
<h4>⪦LOADING⪧</h4>
</div>
</div>
<!-- Preloader End -->
<!-- Header Navbar Start -->
<header>
<nav>
<a href="./" class="nav_brand">
<img src="./assets/img/jwoc_logo.svg" alt="Logo" />
<span>JWoC</span>
</a>
<div class="menu_btn">
<span class="box box-1"></span>
<span class="box box-2"></span>
<span class="box box-3"></span>
<span class="box box-4"></span>
<span class="cross cross-1"></span>
<span class="cross cross-2"></span>
</div>
<div class="navbar_menus">
<div class="nav_menus">
<a href="#about" class="nav_links">About</a>
<a href="#register" class="nav_links">Register</a>
<a href="#timeline" class="nav_links">Timeline</a>
<a href="./projects" class="nav_links">Projects</a>
<a href="#rewards" class="nav_links">Rewards</a>
<a href="#sponsors" class="nav_links">Sponsors</a>
<a href="#team" class="nav_links">Team</a>
<a href="#faqs" class="nav_links">FAQ</a>
<a href="#contact" class="nav_links">Contact Us</a>
<a
href="https://leaderboard.jwoc.tech/"
class="nav_links"
target="_blank"
>
Leaderboard
</a>
</div>
</div>
</nav>
</header>
<!-- Header Navbar End -->
<!-- Main Banner Start -->
<section id="banner">
<div id="particles-js"></div>
<div class="banner container">
<div class="logos">
<span class="blur"></span>
<img src="./assets/img/jwoc_logo_sticker.svg" alt="Logo" class="jwoc" />
<img src="./assets/img/tech_circle.svg" alt="Tech" class="tech" />
</div>
<object data="./assets/img/jwoc_anim.svg" type="image/svg+xml"></object>
<h2>JGEC WINTER OF CODE</h2>
<p>
JWoC (JGEC Winter of Code) is a coding event organised annually by JGEC which helps
students to plunge into Open Source contribution and get the realm of Software
Development.
</p>
<h4>In association with</h4>
<div class="org_grp">
<a href="https://bit.ly/3HV8imW" target="_blank">
Google Developer Student Clubs, JGEC
</a>
<span>Jalpaiguri Govt. Engg. College</span>
</div>
</div>
</section>
<!-- Main Banner End -->
<!-- Section Divider Start -->
<section id="divider">
<div class="skewed"></div>
</section>
<!-- Section Divider End -->
<!-- About Section Start -->
<section id="about">
<div class="heading">
<span class="pseudo"> </span>
<h1>About Us</h1>
<span class="divider_1"></span>
<span class="divider_2"></span>
</div>
<div class="about container">
<div class="fig">
<img src="./assets/img/jwoc_sticker.svg" alt="Logo" />
</div>
<div class="desc">
<h2>JWoC: <span>How it Works?</span></h2>
<p>
JWOC provides a fully immersive learning experience for students and first-time
contributors by promoting the wonders of open-source software and crafting a community
of new and experienced technical developers. The best projects are selected for this
program. Students get acquainted with the projects from the mentors during the Community
Bonding Period. Students work on these projects during the coding phase. At the end of
the coding period, the winners of the programs are announced on the basis of their
contribution in terms of quantity as well as quality.
</p>
<a href="./docs/code-of-conduct" class="btn">Code of Conduct</a>
</div>
</div>
<div class="info container">
<h3>Inf<span>o</span></h3>
<div class="content">
<div class="info_card">
<i class="bx bxs-user-pin"></i>
<h4>Mentors Manual</h4>
<a href="./docs/mentor-manual" class="btn">Get Here</a>
</div>
<img src="./assets/img/snowflake.png" alt="Snow Flake" />
<div class="info_card">
<i class="bx bxs-graduation"></i>
<h4>Students Manual</h4>
<a href="./docs/student-manual" class="btn">Get Here</a>
</div>
</div>
</div>
</section>
<!-- About Section End -->
<!-- Stats Section Start -->
<section id="stats">
<div class="stats">
<div class="stats_card">
<i class="bx bx-bulb"></i>
<p>Projects</p>
<h4>50+</h4>
<span>Breaking Barriers.</span>
</div>
<div class="stats_card">
<i class="bx bx-buildings"></i>
<p>Colleges</p>
<h4>250+</h4>
<span>10+ International Colleges.</span>
</div>
<div class="stats_card">
<i class="bx bxs-graduation"></i>
<p>Participants</p>
<h4>1500+</h4>
<span>Across the Globe.</span>
</div>
<div class="stats_card">
<i class="bx bxs-user-pin"></i>
<p>Mentors</p>
<h4>40+</h4>
<span>Connected All Together.</span>
</div>
</div>
</section>
<!-- Stats Section End -->
<!-- Registration Start -->
<section id="register">
<div class="heading">
<span class="pseudo"></span>
<h1>Registration</h1>
<span class="divider_1"></span>
<span class="divider_2"></span>
</div>
<div class="sub_head">
<h2>What you want to be?</h2>
</div>
<div class="details">
<!-- Mentee -->
<div class="register_card">
<img src="./assets/img/mentee_reg.png" alt="Mentee Fig" />
<h4>Become a Mentee</h4>
<p>
If you are new to open source world or have some experience in open source and want to
contribute in some amazing open source projects register as a mentee.
</p>
<a href="./auth/student-register" class="btn">Mentee's Registration</a>
</div>
<img src="./assets/img/register.svg" alt="Reg Img" class="reg_img" />
<!-- Mentor -->
<div class="register_card">
<img src="./assets/img/mentor_reg.png" alt="Mentor Fig" />
<h4>Become a Mentor</h4>
<p>
If you have some unique projects which you are willing to add some features or complete
it by open sourcing them, we encourage you to apply for mentorship in our program.
</p>
<a href="./auth/mentor-register" class="btn">Mentor's Registration</a>
</div>
</div>
</section>
<!-- Registration End -->
<!-- Timeline Start -->
<section id="timeline">
<div class="heading">
<span class="pseudo"></span>
<h1>Timeline</h1>
<span class="divider_1"></span>
<span class="divider_2"></span>
</div>
<div class="sub_head">
<h3>Have a look what we scheduled for you!</h3>
<p>Lets start the Debugging, Decoding, Developing journey!</p>
</div>
<div class="details">
<div class="fig">
<img src="./assets/img/timeline.png" alt="Timeline Img" />
</div>
<div class="events">
<!-- All Events Mapped: "event.data.js" -->
</div>
</div>
</section>
<!-- Timeline End -->
<!-- Projects Start -->
<section id="projects">
<div class="heading">
<span class="pseudo"></span>
<h1>Projects</h1>
<span class="divider_1"></span>
<span class="divider_2"></span>
</div>
<div class="details container">
<div class="content col-lg-6">
<h2>All about projects</span></h2>
<p>
It's finally the time to jump into Open Source Development and find your desired
projects where you wish to contribute by leveraging your skillsets. Don't forget
to interact with the mentors and know the details of their projects! Each of your
contribution is one step forward towards building a great solution. <br />
So here we go, Projects for this year JWoC are revealing one by one. So go on check
them out right here.
</p>
<a href="./projects.html" class="btn">Go for Projects</a>
</div>
<div class="figure col-lg-6">
<img src="./assets/img/projects_fig.png" alt="Projects Figure" />
</div>
</div>
</section>
<!-- Projects End -->
<!-- Rewards Start -->
<section id="rewards">
<div class="heading">
<span class="pseudo"></span>
<h1>Rewards</h1>
<span class="divider_1"></span>
<span class="divider_2"></span>
</div>
<div class="sub_head">
<h2>Why you must register for <span>JWoC 2K22</span>?</h2>
<p>Because exciting rewards & prizes are waiting just for you.</p>
</div>
<div class="content">
<div class="reward_card">
<div class="fig">
<img src="./assets/img/perk-1.png" alt="Paid Internship Opportunities" />
</div>
<h4>Paid Internship Opportunities</h4>
</div>
<div class="reward_card">
<div class="fig">
<img src="./assets/img/perk-2.png" alt="Coupons & Free Domains" />
</div>
<h4>Coupons & Free Domains</h4>
</div>
<div class="reward_card">
<div class="fig">
<img src="./assets/img/perk-3.png" alt="Goodies & Cool Stickers" />
</div>
<h4>Goodies & Cool Stickers</h4>
</div>
<div class="reward_card">
<div class="fig">
<img src="./assets/img/perk-4.png" alt="Workshops & Masterclasses" />
</div>
<h4>Workshops & Masterclasses</h4>
</div>
<div class="reward_card">
<div class="fig">
<img src="./assets/img/perk-5.png" alt="Verified Certificates" />
</div>
<h4>Verified Certificates</h4>
</div>
</div>
</section>
<!-- Rewarss End -->
<!-- Sponsors Start -->
<section id="sponsors">
<div class="heading">
<span class="pseudo"></span>
<h1>Our Sponsors</h1>
<span class="divider_1"></span>
<span class="divider_2"></span>
</div>
<div class="sub_head">
<h2>Thanks for supporting us!</h2>
<h4>Sponsor us and get featured in here with many more perks!</h4>
<a
href="./assets/docs/jwoc-sponsorship-brochure.pdf"
class="btn"
target="_blank"
rel="noopener"
>
Get Brochure
</a>
</div>
<div class="details">
<div class="category diamond row">
<div class="title col-lg-3">
<img src="./assets/img/diamond.png" alt="Diamond Level" class="w6" />
<h4>Diamond Sponsors</h4>
</div>
<div class="sponsors col-lg-9">
<!-- All Diamond Sponsors Mapped: "sponsors.data.js" -->
</div>
</div>
<div class="category gold row">
<div class="title col-lg-3">
<img src="./assets/img/gold.png" alt="Gold Level" class="w6" />
<h4>Gold Sponsors</h4>
</div>
<div class="sponsors col-lg-9">
<!-- All Gold Sponsors Mapped: "sponsors.data.js" -->
</div>
</div>
<div class="category silver row">
<div class="title col-lg-3">
<img src="./assets/img/silver.png" alt="Silver Level" class="w6" />
<h4>Silver Sponsors</h4>
</div>
<div class="sponsors col-lg-9">
<!-- All Silver Sponsors Mapped: "sponsors.data.js" -->
</div>
</div>
<div class="category community row">
<div class="title col-lg-3">
<img src="./assets/img/community.png" alt="Community Partner" class="w5" />
<h4>Community Partner</h4>
</div>
<div class="sponsors col-lg-9">
<!-- All Community Partner Mapped: "sponsors.data.js" -->
</div>
</div>
<div class="category certificate row">
<div class="title col-lg-3">
<img src="./assets/img/certificate.png" alt="Certificate Partner" class="w5" />
<h4>Certificate Partner</h4>
</div>
<div class="sponsors col-lg-9">
<!-- All Certificate Partner Mapped: "sponsors.data.js" -->
</div>
</div>
<div class="category learning row">
<div class="title col-lg-3">
<img src="./assets/img/learning.png" alt="Learning Partner" class="w6" />
<h4>Learning Partner</h4>
</div>
<div class="sponsors col-lg-9">
<!-- All Learning Partner Mapped: "sponsors.data.js" -->
</div>
</div>
</div>
<h3 class="bottom_tagline">More Sponsors Coming Soon!</h3>
</section>
<!-- Sponsors End -->
<!-- Team Start -->
<section id="team">
<div class="heading">
<span class="pseudo"></span>
<h1>Our Team</h1>
<span class="divider_1"></span>
<span class="divider_2"></span>
</div>
<div class="members">
<!-- All Members Mapped: "team.data.js" -->
</div>
</section>
<!-- Team End -->
<!-- FAQs Start -->
<section id="faqs">
<div class="heading">
<span class="pseudo"></span>
<h1>FAQs</h1>
<span class="divider_1"></span>
<span class="divider_2"></span>
</div>
<div class="sub_head">
<h2>Some Frequently Asked Questions</h2>
</div>
<div class="faqs">
<!-- All FAQs Mapped: "faq.data.js" -->
</div>
</section>
<!-- FAQs End -->
<!-- Contact Us Start -->
<section id="contact">
<div class="heading">
<span class="pseudo"></span>
<h1>Contact Us</h1>
<span class="divider_1"></span>
<span class="divider_2"></span>
</div>
<div class="sub_head">
<h4>Any Question?</h4>
<h2>Drop Us A Line</h2>
<p>
Feel free to contact us on any platform and we will happy to help you out.
<br />
Also follow us for latest updates.
</p>
</div>
<div class="platforms">
<div class="social_box">
<i class="bx bxs-envelope"></i>
<span>Email At:</span>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="social_box">
<i class="bx bxl-facebook"></i>
<span>Facebook:</span>
<a href="https://www.facebook.com/jwoc2k20" target="_blank">jwoc/profile</a>
</div>
<div class="social_box">
<i class="bx bxl-linkedin"></i>
<span>Linkedin:</span>
<a href="https://www.linkedin.com/company/jwoc/" target="_blank">linkedin/jwoc</a>
</div>
<div class="social_box">
<i class="bx bxl-twitter"></i>
<span>Twitter:</span>
<a href="https://twitter.com/TeamJWOC" target="_blank">@jwoc</a>
</div>
</div>
</section>
<!-- Contact Us End -->
<!-- Footer Start -->
<footer>
<img src="./assets/img/jwoc_logo.svg" alt="Logo" />
<h2>JWOC</h2>
<h4>JGEC Winter of Code</h4>
<p>Copyright © JWOC 2022. All rights reserved.</p>
</footer>
<!-- Footer End -->
<!-- Notice Banner Start -->
<!--
<section id="notice_banner">
<div class="notice_modal">
<h2>Leaderboard <br/> Out!</h2>
<h4>Hey, Developers!</h4>
<p>Check your ranks till now and compete hard!</p>
<a href="https://leaderboard.jwoc.tech/" target="_blank">See Leaderboard</a>
<i class="bx bxs-message-square-x" id="notice_close"></i>
</div>
<canvas id="confetti-canvas"></canvas>
</section>
-->
<!-- Notice Banner End -->
</body>
</html>