forked from Junior-Developer-Group/junior-developer-group
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
526 lines (459 loc) · 16.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO SETTINGS FOR GOOGLE-->
<meta name="author" content="Junior Developer Group" />
<meta
name="description"
content="Join junior developers like yourself and start collaborating on smaller projects, practice version control and make meaningful connections"
/>
<!-- SEO SETTINGS FOR WHEN WEBSITE URL IS SHARED -->
<meta
name="og:title"
property="og:title"
content="Junior Developer Group"
/>
<meta
property="og:description"
content="Join junior developers like yourself and start collaborating on smaller projects, practice version control and make meaningful connections"
/>
<meta
property="og:image"
content="assets/website-images/logo-with-background.png"
/>
<!-- WEBSITE TITLE-->
<title>Junior Developer Group</title>
<!-- FAVICON -->
<link rel="icon" type="image/jpg" href="/assets/images/favicon.ico" />
<!-- CSS STYLESHEET -- TEAM PAGE -->
<link rel="stylesheet" href="teamPage.css" />
</head>
<body>
<!-- DESKTOP NAVIGATION -->
<nav class="main-navigation--desktop">
<div class="navigation-logo">
<img src="./assets/images/website-images/logo-with-background.png" onclick="window.open('/')"/>
</div>
<div class="navigation-links">
<a href="/pages/about.html"> About</a>
<a href="/pages/developers.html"> Developers </a>
<!-- <a href="/pages/hacktoberfest/maintainers.html"> HacktoberFest 2021 </a> -->
<a href="/index.html#events"> Workshops </a>
<a href="/index.html#getInvolved"> Get Involved</a>
<a href="/index.html#blog"> Blog</a>
</div>
</nav>
<!-- MOBILE NAVIGATION -->
<nav class="main-navigation--mobile">
<div class="navigation-menu-icon">
<div class="hamburger" onclick="showMobileNavigationContent()">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</div>
<div class="navigation-links-wrapper" id="mobileNavigationWrapper">
<div class="close-icon-text">
Close
<div class="close-icon" onclick="hideMobileNavigationContent()">
<div class="close-line-1"></div>
<div class="close-line-2"></div>
</div>
</div>
<div class="navigation-links">
<a href="/pages/about.html"> About</a>
<a href="/pages/developers.html"> Developers </a>
<!-- <a href="/pages/hacktoberfest/maintainers.html"> HacktoberFest 2021 </a> -->
<a href="/index.html#events"> Workshops </a>
<a href="/index.html#getInvolved"> Get Involved</a>
<a href="/index.html#blog"> Blog</a>
</div>
</div>
</nav>
<!-- HEADER SECTION -->
<section class="hero_header">
<div class="hero_header-information">
<h1>Junior Developer Group</h1>
<p>
We're an international open-source community helping early career developers
gain new skills, make meaningful connections and provide guidance
to those entering their first roles in tech.
</p>
<p> We started working together in December 2020 and have been building projects, <br>
exploring Scrum ceremonies and debugging JavaScript ever since.
</p>
<a href="/pages/about.html">More Info</a>
</div>
<div class="hero_header-logo">
<img src="./assets/images/website-images/logo-with-background.png" />
</div>
</section>
<!-- TOOLS & TECHNOLOGIES-->
<section class="group-projects">
<div class="active-projects">
<h2>ACTIVE PROJECTS</h2>
<div class="single-project">
<div class="project-image">
<img
src="./assets/images/website-images/dahsboard.png"
alt="an ilustration of a dashboard on a green background"
onclick="openTeamDashboardRepository()"
/>
</div>
<div class="project-details">
<!-- project status -->
<span>
<h5>Status:</h5>
<p>In Progress</p>
</span>
<!-- project title -->
<h3>Team Dashboard</h3>
</div>
</div>
<div class="single-project">
<div class="project-image">
<img
src="./assets/images/website-images/catmatch.png"
alt="a person and their cat chililng on a purple coloured couch"
onclick="openCatMatchRepository()"
/>
</div>
<div class="project-details">
<!-- project status -->
<span>
<h5>Status:</h5>
<p>Paused</p>
</span>
<!-- project title -->
<h3>Cat Match</h3>
</div>
</div>
<div class="single-project">
<div class="project-image">
<img
src="./assets/images/website-images/sleep.png"
alt="two clouds on a blue background accompanied by text reading Sleep Quality Calculator by Junior developer Group"
onclick="openSleepQualityCalculatorWebsite()"
/>
</div>
<div class="project-details">
<!-- project status -->
<span>
<h5>Status:</h5>
<p>Completed</p>
</span>
<!-- project title -->
<h3>Sleep Quality Calculator</h3>
</div>
</div>
<div class="single-project">
<div class="project-image">
<img
src="./assets/images/website-images/hacktoberfest.png"
alt="Hacktoberfest challenge logo | a pink letter H on a navy blue background"
onclick="openHacktoberfest2020Challenge()"
/>
</div>
<div class="project-details">
<!-- project status -->
<span>
<h5>Status:</h5>
<p>Completed</p>
</span>
<!-- project title -->
<h3>Hacktoberfest 2020</h3>
</div>
</div>
</div>
<div class="about-technologies">
<h2>Tools & Technologies</h2>
<div class="tool-row">
<div class="single-tool green">
<img src="./assets/images/html5.png" alt="html 5 logo" />
</div>
<div class="single-tool pink">
<img src="./assets/images/css3.png" alt="css 3 logo" />
</div>
<div class="single-tool blue">
<img src="./assets/images/javascript.png" alt="javascript logo" />
</div>
<div class="single-tool green">
<img
src="./assets/images/vs-code.png"
alt="Visual Studio Code logo"
/>
</div>
<div class="single-tool pink">
<img src="./assets/images/jira.png" alt="Jira Cloud Logo" />
</div>
<div class="single-tool blue">
<img src="./assets/images/git.png" alt="git logo" />
</div>
</div>
</div>
</section>
<!--EVENTS & WORKSHOPS -->
<section class="events-and-workshops" id="events">
<h2>Events & Workshops</h2>
<div class="events-wrapper">
<div class="single-event green">
<div class="event-details">
<h3>Friday Focus Session</h3>
<p>every Friday at 7PM UK time</p>
</div>
<div class="event-image">
<img
src="./assets/images/website-images/logo-with-background.png"
alt="Junior Developer Group Logo | A butterfly with a blue and a purple wing"
/>
</div>
</div>
<div class="single-event pink">
<div class="event-details">
<h3>New Member Induction</h3>
<p>new members - repeated event</p>
</div>
<div class="event-image">
<img
src="./assets/images/website-images/logo-with-background.png"
alt="Junior Developer Group Logo | A butterfly with a blue and a purple wing"
/>
</div>
</div>
<div class="single-event blue">
<div class="event-details">
<h3>Sprint Planning </h3>
<p>Friday at 7:30 PM UK time</p>
</div>
<div class="event-image">
<img
src="./assets/images/website-images/logo-with-background.png"
alt="Junior Developer Group Logo | A butterfly with a blue and a purple wing"
/>
</div>
</div>
<div class="single-event green">
<div class="event-details">
<h3>Introduction to Scrum</h3>
<p>new members - repeated event</p>
</div>
<div class="event-image">
<img
src="./assets/images/website-images/logo-with-background.png"
alt="Junior Developer Group Logo | A butterfly with a blue and a purple wing"
/>
</div>
</div>
<div class="single-event pink">
<div class="event-details">
<h3>Sprint Review</h3>
<p>Friday at 7:30 PM UK time</p>
</div>
<div class="event-image">
<img
src="./assets/images/website-images/logo-with-background.png"
alt="Junior Developer Group Logo | A butterfly with a blue and a purple wing"
/>
</div>
</div>
<div class="single-event blue">
<div class="event-details">
<h3>Introduction to SEO</h3>
<p>new members - repeated event</p>
</div>
<div class="event-image">
<img
src="./assets/images/website-images/logo-with-background.png"
alt="Junior Developer Group Logo | A butterfly with a blue and a purple wing"
/>
</div>
</div>
<div class="single-event green">
<div class="event-details">
<h3>Sprint Retrospective</h3>
<p>Friday at 7:30 PM UK time</p>
</div>
<div class="event-image">
<img
src="./assets/images/website-images/logo-with-background.png"
alt="Junior Developer Group Logo | A butterfly with a blue and a purple wing"
/>
</div>
</div>
<div class="single-event pink">
<div class="event-details">
<h3>Introduction to GDPR</h3>
<p>new members - repeated event</p>
</div>
<div class="event-image">
<img
src="./assets/images/website-images/logo-with-background.png"
alt="Junior Developer Group Logo | A butterfly with a blue and a purple wing"
/>
</div>
</div>
</div>
</section>
<!--RECENT CELEBRATIONS -->
<section class="team-celebrations" id="celebrations">
<h2>Recent Celebrations</h2>
<div id="celebrate"></div>
</section>
<!--BLOG POSTS & ANNOUNCEMENTS -->
<section class="featured-posts" id="blog">
<h2>Featured Posts</h2>
<div class="single-post">
<div class="post-image">
<img src="https://likiipedia.com/wp-content/uploads/2021/08/gather-1024x464.png" alt="Join junior developer group" />
</div>
<div class="post-details">
<div class="date-posted">
<p>Junior Developer Group</p>
<p>September 26, 2021</p>
</div>
<div class="post-title">
<h3>Join Our Team | Invitation</h3>
</div>
<div class="post-description">
<p>
In October 2020 a couple of us had a chance to explore Hacktoberfest Challenge together, for the first time.
By the end of the month, we made a nice little page presenting our community using HTML, CSS, and (vanilla) JavaScript...
</p>
</div>
<div class="post-url">
<a href="https://likiipedia.com/open-source-team-invitation/" target="blank"> Read more </a>
</div>
</div>
</div>
<div class="single-post">
<div class="post-image">
<img src="https://likiipedia.com/wp-content/uploads/2021/02/git-versioning-768x530.jpg" alt="github version control panel" />
</div>
<div class="post-details">
<div class="date-posted">
<p>Getting Started</p>
<p>February 2, 2021</p>
</div>
<div class="post-title">
<h3>Get familiar with basic Git commands</h3>
</div>
<div class="post-description">
<p>
When I first started using the terminal and writing commands, it all felt very complicated.
I worked with a senior developer at that time who knew all of these commands,
what they do and what do the errors mean...
</p>
</div>
<div class="post-url">
<a href="https://likiipedia.com/simplifying-git-commands/" target="blank"> Read more </a>
</div>
</div>
</div>
</section>
<!-- GET INVOLVED SECTION -->
<section class="get-involved" id="getInvolved">
<!-- JUNIOR DEVELOPERS -->
<div class="get-involved__column">
<div class="badge">Get Involved</div>
<div class="column-title">
<h3>Junior Developers</h3>
</div>
<div class="column-price">
<p>
<strong> $0</strong>
<span> /mo</span>
</p>
</div>
<div class="column-information">
<ul>
<li><strong>Skill appropriate</strong> code reviews & feedback</li>
<li><strong>Weekly</strong> team catch-ups on GatherTown</li>
<li><strong>Monthly</strong> workshops & hackathon events</li>
</ul>
</div>
<div class="column-button">
<button onclick="openDiscord()">Join us</button>
</div>
</div>
<!-- SKATEBOY IMAGE -->
<div class="get-involved__column">
<img
src="./assets/images/website-images/skateboy.png"
alt="a skateboy in an orange coloured tshirt enjoying his ride"
/>
</div>
<!-- SENIOR DEVELOPERS AND MENTORS -->
<div class="get-involved__column">
<div class="badge">Get Involved</div>
<div class="column-title">
<h3>Mentors & Team Leads</h3>
</div>
<div class="column-price">
<p>
<strong> $0</strong>
<span> /mo</span>
</p>
</div>
<div class="column-information">
<ul>
<li>
<strong>Help</strong> members with skill appropriate feedback
</li>
<li>
<strong>Prepare</strong> weekly team catch-ups on GatherTown
</li>
<li><strong>Lead</strong> monthly workshops & hackathon events</li>
</ul>
</div>
<div class="column-button">
<button onclick="openDiscord()">Talk to us</button>
</div>
</div>
</section>
<footer>
<div class="footer-socials">
<img
class="discord-logo"
src="./assets/images/discord.png"
alt=" Discord logo"
onclick="openLink()"
/>
<img
src="./assets/images/github-logo.png"
alt="GitHub logo | a white coloured kitten on a dark background"
onclick="openGitHub()"
/>
<img
src="./assets/images/instagram-logo.png"
alt="Outline of Instagram logo on a white background"
onclick="openInstagram()"
/>
<img
src="./assets/images/gather.png"
alt="GatherTown logo | Grape vine on a purple background"
onclick="openGather()"
/>
</div>
<div class="footer-copyright">
<p>
© Junior Developer Group, <span class="footer-copyright--date"></span>
</p>
</div>
</footer>
<gdpr-component></gdpr-component>
</body>
<!-- SCRIPTS -->
<script src="./assets/js/homepage-scripts.js"></script>
<script src="./assets/js/celebrations.js"></script>
<script src="../assets/js/components/component-map.js"
type="module"
defer> </script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-E7KQ4C9DKP');
</script>
</html>