Skip to content

Commit ec64d49

Browse files
Merge branch 'main' into team_agam_asher_jiayi
2 parents b2c8089 + e9bc7e1 commit ec64d49

6 files changed

Lines changed: 79 additions & 3 deletions

File tree

app.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,3 +309,6 @@ def team_bo_kevin_miller():
309309
def team_tyler_shubham_mikaella():
310310
return render_template('teams/tyler_shubham_mikaella.html')
311311

312+
@app.route("/ahmet-khang-aizen")
313+
def team_ahmet_khang_aizen():
314+
return render_template('teams/ahmet-khang-aizen.html')

static/img/abas.jpg

664 KB
Loading

static/img/ahmet-khang-aizen.webp

1.1 MB
Loading

static/img/faviconTurtle.ico

15 KB
Binary file not shown.

templates/students_2025.html

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ <h1> Summer 2025 Cohort </h1>
160160
<div>School: UC Merced</div>
161161
<p>What I'm most looking forward to about the CodeDay Labs internship is learning about and gaining experience
162162
working with industry-relevant technologies and contributing to a meaningful open-source project.</p>
163+
<a href="ahmet-khang-aizen">Team Ahmet + Khang + Aizen</a>
163164
</div>
164165

165166

@@ -288,7 +289,7 @@ <h1> Summer 2025 Cohort </h1>
288289
<div class="student-name"> Ahmet Sahiner </div>
289290
<div> School: CCSF </div>
290291
<p> What I'm most looking forward to about the CodeDay internship is learning more about software engineering and gaining real world experience in that field. </p>
291-
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
292+
<a href="ahmet-khang-aizen">Team Ahmet + Khang + Aizen<br>(Turtles)</a>
292293
</div>
293294
<div class="student-container">
294295
<div>
@@ -454,14 +455,25 @@ <h1> Summer 2025 Cohort </h1>
454455
<a href="nat_uts">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
455456
</div>
456457

457-
<div class="student-container">
458+
459+
<div class="student-container">
458460
<div>
459461
<img src="static/img/Jiayi.jpg">
460462
</div>
461463
<div class="student-name"> Jiayi Chen </div>
462464
<div> School: CSU Fullerton </div>
463465
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining hands-on experiences and meeting amazing people! </p>
464-
<a href="">Team Agam, Asher, Jiayi</a>
466+
<a href="agam_asher_jiayi">Team Agam, Asher, Jiayi</a>
467+
</div>
468+
469+
<div class="student-container">
470+
<div>
471+
<img src="static/img/abas.jpeg">
472+
</div>
473+
<div class="student-name"> Abas Mohamed </div>
474+
<div> School: Grossmont College </div>
475+
<p> What I am most looking foward to about the CodeDay Lab internship is learning about open source and how to begin making contributions </p>
476+
<a href="nat_uts">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
465477
</div>
466478

467479
</body>
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Team Ahmet + Khang + Aizen</title>
8+
<meta name="description" content="Welcome to Turtles team page! Discover more about our members, values, and vision.">
9+
<meta name="keywords" content="Turtles, Team, Collaboration, About Us, Team Page">
10+
<meta name="author" content="Ahmet Sahiner, Aizen Baidya, Khang Nguyen">
11+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
12+
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous" />
13+
<script src="https://cdn.jsdelivr.net/npm/canvas-confetti@1.6.0"></script>
14+
<link rel="icon" href="./../static/img/faviconTurtle.ico">
15+
<link rel="preload" href="../../static/img/ahmet-khang-aizen.webp" as="image" />
16+
</head>
17+
18+
<body>
19+
<div class="container mt-2">
20+
<div class="text-center">
21+
<h1 class="text-primary">Team Ahmet + Khang + Aizen</h1>
22+
<h2 class="text-secondary">What do we have in common?</h2>
23+
<p class="text-warning">We all like turtles!</p>
24+
</div>
25+
26+
<div class="text-center">
27+
<img src="../../static/img/ahmet-khang-aizen.webp" style="width: 50%; height: 50%; border-radius: 16px"
28+
class="mb-2" />
29+
30+
<figure class="text-center">
31+
<blockquote class="blockquote">
32+
<p>
33+
Yesterday is history, Tomorrow is a mystery, but Today is a gift.
34+
That is why it is called the present.
35+
</p>
36+
</blockquote>
37+
<figcaption class="blockquote-footer">
38+
Oogway from <cite title="Source Title">Kung Fu Panda</cite>
39+
</figcaption>
40+
</figure>
41+
42+
<button type="button" class="btn btn-success" onClick="launchConfetti()">
43+
Surprise
44+
</button>
45+
46+
<a href="2025" class="btn btn-primary"> Go Back </a>
47+
</div>
48+
</div>
49+
50+
<script>
51+
function launchConfetti() {
52+
confetti({ particleCount: 1024, spread: 128, origin: { y: 0.8 } });
53+
}
54+
</script>
55+
56+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
57+
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
58+
crossorigin="anonymous"></script>
59+
</body>
60+
61+
</html>

0 commit comments

Comments
 (0)