-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
488 lines (479 loc) · 20.8 KB
/
Copy pathindex.html
File metadata and controls
488 lines (479 loc) · 20.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BloomTech Curriculum Index</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background-color: #1a1d23; /* Dark background color */
color: #ffffff;
}
.container {
max-width: 1200px;
margin: 0 auto;
background-color: #222831; /* Darker container background */
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
h1, h2, h3, h4 {
color: #ffffff;
margin: 0;
}
h1 {
color: #ffffff;
text-align: center;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid #ff5722; /* Orange accent color */
}
h2 {
color: #ff5722; /* Orange accent color */
margin: 0;
padding-bottom: 10px;
border-bottom: 1px solid #333a47;
}
.curriculum-section {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-top: 20px;
}
.sprint-card {
flex: 1 0 calc(33.333% - 20px);
min-width: 300px;
border: 1px solid #333a47;
border-radius: 8px;
padding: 20px;
box-shadow: 0 1px 3px rgba(0,0,0,0.3);
transition: transform 0.2s, box-shadow 0.2s;
background-color: #2a303c;
display: flex;
flex-direction: column;
}
.sprint-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 6px rgba(0,0,0,0.4);
border-color: #ff5722; /* Orange accent color */
}
.sprint-card h3 {
color: #ffffff;
margin-top: 0;
/* margin-bottom: 15px; */
}
.sprint-card p {
color: #e0e0e0;
flex-grow: 1;
}
.sprint-card a {
display: inline-block;
padding: 8px 16px;
background-color: #ff5722; /* Orange accent color */
color: white;
text-decoration: none;
border-radius: 4px;
transition: all 0.2s;
/* margin-top: auto; */
align-self: flex-start;
}
.sprint-card a:hover {
background-color: #ff7043; /* Lighter orange on hover */
box-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
}
.curriculum-header {
display: flex;
align-items: center;
justify-content: space-between;
}
.curriculum-header .count {
background-color: #ff5722; /* Orange accent color */
color: white;
padding: 5px 10px;
border-radius: 20px;
font-size: 0.9em;
}
@media (max-width: 768px) {
.sprint-card {
flex: 1 0 100%;
}
}
/* Logo styling */
.logo {
display: flex;
align-items: center;
margin-bottom: 20px;
justify-content: center;
}
.logo svg {
margin-right: 15px;
}
.logo-text {
font-size: 24px;
font-weight: bold;
color: #ffffff;
}
</style>
</head>
<body>
<div class="container">
<h1>BloomTech Curriculum Index</h1>
<div class="curriculum-header">
<h2>Data Science Curriculum</h2>
<span class="count" id="ds-count">0 Sprints</span>
</div>
<div class="curriculum-section" id="ds-section">
<div class="sprint-card">
<h3>Data Science Unit 1 Sprint 1</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-1-sprint-1/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 1 Sprint 2</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-1-sprint-2/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 1 Sprint 3</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-1-sprint-3/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 1 Sprint 4</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-1-sprint-4/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 2 Sprint 5</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-2-sprint-5/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 2 Sprint 6</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-2-sprint-6/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 2 Sprint 7</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-2-sprint-7/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 2 Sprint 8</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-2-sprint-8/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 3 Sprint 9</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-3-sprint-9/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 3 Sprint 10</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-3-sprint-10/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 3 Sprint 11</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-3-sprint-11/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 3 Sprint 12</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-3-sprint-12/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 4 Sprint 13</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-4-sprint-13/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 4 Sprint 14</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-4-sprint-14/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 4 Sprint 15</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-4-sprint-15/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science Unit 4 Sprint 16</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-unit-4-sprint-16/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Data Science ACS</h3>
<p>Applied Computer Science</p>
<a href="ds-curriculum/ds-acs/index.html">Go to ACS</a>
</div>
<div class="sprint-card">
<h3>Data Science Labs</h3>
<p>Data Science Fundamentals</p>
<a href="ds-curriculum/ds-labs/index.html">Go to Labs</a>
</div>
</div>
<div class="curriculum-header">
<h2>Web Development Curriculum</h2>
<span class="count" id="web-count">0 Sprints</span>
</div>
<div class="curriculum-section" id="web-section">
<div class="sprint-card">
<h3>Web Unit 1 Sprint 1</h3>
<p>JavaScript Fundamentals, HTML & CSS I, JavaScript Functions and Control Flow</p>
<a href="web-curriculum/web-unit-1-sprint-1/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 1 Sprint 2</h3>
<p>Advanced JavaScript Concepts</p>
<a href="web-curriculum/web-unit-1-sprint-2/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 1 Sprint 3</h3>
<p>Web Development Fundamentals</p>
<a href="web-curriculum/web-unit-1-sprint-3/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 1 Sprint 4 ACS 1</h3>
<p>Applied Computer Science 1</p>
<a href="web-curriculum/web-unit-1-sprint-4/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 2 Sprint 5</h3>
<p>Advanced Web Development</p>
<a href="web-curriculum/web-unit-2-sprint-5/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 2 Sprint 6</h3>
<p>React Fundamentals</p>
<a href="web-curriculum/web-unit-2-sprint-6/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 2 Sprint 7</h3>
<p>Advanced React</p>
<a href="web-curriculum/web-unit-2-sprint-7/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 2 Sprint 8 ACS 2</h3>
<p>Applied Computer Science 2</p>
<a href="web-curriculum/web-unit-2-sprint-8-acs-2/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 3 Sprint 9</h3>
<p>Backend Development</p>
<a href="web-curriculum/web-unit-3-sprint-9/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 3 Sprint 10</h3>
<p>Advanced Backend Development</p>
<a href="web-curriculum/web-unit-3-sprint-10/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 3 Sprint 11</h3>
<p>Authentication and Testing</p>
<a href="web-curriculum/web-unit-3-sprint-11/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 3 Sprint 12 ACS 3</h3>
<p>Applied Computer Science 3</p>
<a href="web-curriculum/web-unit-3-sprint-12-acs-3/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 4 Sprint 13</h3>
<p>Full Stack Development</p>
<a href="web-curriculum/web-unit-4-sprint-13/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 4 Sprint 14</h3>
<p>State Management</p>
<a href="web-curriculum/web-unit-4-sprint-14/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 4 Sprint 15</h3>
<p>Advanced Web Applications</p>
<a href="web-curriculum/web-unit-4-sprint-15/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web Unit 4 Sprint 16 ACS 3</h3>
<p>Applied Computer Science 3</p>
<a href="web-curriculum/web-unit-4-sprint-16-acs-3/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>Web ACS</h3>
<p>Applied Computer Science</p>
<a href="web-curriculum/web-acs/index.html">Go to ACS</a>
</div>
<div class="sprint-card">
<h3>Web Labs</h3>
<p>Build Challenge</p>
<a href="web-curriculum/web-labs/index.html">Go to Labs</a>
</div>
</div>
<div class="curriculum-header">
<h2>Backend Development Curriculum</h2>
<span class="count" id="bd-count">0 Sprints</span>
</div>
<div class="curriculum-section" id="bd-section">
<div class="sprint-card">
<h3>BD Unit 1 Sprint 1</h3>
<p>Java Basics - Command-line and IDE Basics, Git, Variables, Console Output</p>
<a href="bd-curriculum/bd-unit-1-sprint-1/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 1 Sprint 2</h3>
<p>Java Programming Fundamentals</p>
<a href="bd-curriculum/bd-unit-1-sprint-2/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 1 Sprint 3</h3>
<p>Object-Oriented Programming</p>
<a href="bd-curriculum/bd-unit-1-sprint-3/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 1 Sprint 4</h3>
<p>Java Advanced Concepts</p>
<a href="bd-curriculum/bd-unit-1-sprint-4/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 2 Sprint 5</h3>
<p>Relational Databases</p>
<a href="bd-curriculum/bd-unit-2-sprint-5/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 2 Sprint 6</h3>
<p>Spring Framework Basics</p>
<a href="bd-curriculum/bd-unit-2-sprint-6/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 2 Sprint 7</h3>
<p>Spring Data JPA</p>
<a href="bd-curriculum/bd-unit-2-sprint-7/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 2 Sprint 8 ACS 2</h3>
<p>Applied Computer Science 2</p>
<a href="bd-curriculum/bd-unit-2-sprint-8-acs-2/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 3 Sprint 9</h3>
<p>RESTful APIs</p>
<a href="bd-curriculum/bd-unit-3-sprint-9/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 3 Sprint 10</h3>
<p>Authentication and Security</p>
<a href="bd-curriculum/bd-unit-3-sprint-10/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 3 Sprint 11</h3>
<p>Testing and Documentation</p>
<a href="bd-curriculum/bd-unit-3-sprint-11/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 3 Sprint 12 ACS 3</h3>
<p>Applied Computer Science 3</p>
<a href="bd-curriculum/bd-unit-3-sprint-12-acs-3/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 4 Sprint 13</h3>
<p>Microservices Architecture</p>
<a href="bd-curriculum/bd-unit-4-sprint-13/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 4 Sprint 14</h3>
<p>Cloud Deployment</p>
<a href="bd-curriculum/bd-unit-4-sprint-14/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 4 Sprint 15</h3>
<p>Advanced Backend Concepts</p>
<a href="bd-curriculum/bd-unit-4-sprint-15/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 4 Sprint 16 ACS 4</h3>
<p>Applied Computer Science 4</p>
<a href="bd-curriculum/bd-unit-4-sprint-16-acs-4/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 5 Sprint 17-19 LBC</h3>
<p>Labs Build Challenge</p>
<a href="bd-curriculum/bd-unit-5-sprint-17-19-lbc/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 6 Sprint 20</h3>
<p>???</p>
<a href="bd-curriculum/bd-unit-6-sprint-20/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 6 Sprint 21</h3>
<p>Advanced Java Technologies</p>
<a href="bd-curriculum/bd-unit-6-sprint-21/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 6 Sprint 22</h3>
<p>Enterprise Java Development</p>
<a href="bd-curriculum/bd-unit-6-sprint-22/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 6 Sprint 23</h3>
<p>Modern Backend Development</p>
<a href="bd-curriculum/bd-unit-6-sprint-23/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 6 Sprint 24:ACS 5-8</h3>
<p>Applied Computer Science 5-8</p>
<a href="bd-curriculum/bd-unit-6-sprint-24-acs/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 7 Sprint 25</h3>
<p>Capstone Project I</p>
<a href="bd-curriculum/bd-unit-7-sprint-25/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 7 Sprint 26</h3>
<p>Capstone Project II</p>
<a href="bd-curriculum/bd-unit-7-sprint-26/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD Unit 7 Sprint 27</h3>
<p>Capstone Project III</p>
<a href="bd-curriculum/bd-unit-7-sprint-27/index.html">Go to Sprint</a>
</div>
<div class="sprint-card">
<h3>BD ACS</h3>
<p>Applied Computer Science</p>
<a href="bd-curriculum/bd-acs/index.html">Go to ACS</a>
</div>
<div class="sprint-card">
<h3>BD Labs</h3>
<p>Build Challenge</p>
<a href="bd-curriculum/bd-labs/index.html">Go to Labs</a>
</div>
</div>
</div>
<script>
// Function to count sprint cards and update counts
function updateSprintCounts() {
// Count Data Science sprints
const dsSection = document.getElementById('ds-section');
const dsCount = dsSection.querySelectorAll('.sprint-card').length;
document.getElementById('ds-count').textContent = dsCount + ' Sprints';
// Count Web Development sprints
const webSection = document.getElementById('web-section');
const webCount = webSection.querySelectorAll('.sprint-card').length;
document.getElementById('web-count').textContent = webCount + ' Sprints';
// Count Backend Development sprints
const bdSection = document.getElementById('bd-section');
const bdCount = bdSection.querySelectorAll('.sprint-card').length;
document.getElementById('bd-count').textContent = bdCount + ' Sprints';
}
// Run the count function when the page loads
window.addEventListener('DOMContentLoaded', updateSprintCounts);
</script>
</body>
</html>