Skip to content

Commit e9bc7e1

Browse files
Merge pull request #460 from aizenbaidya/team-ahmet-khang-aizen
Team ahmet khang aizen
2 parents 79ae62e + 58cc767 commit e9bc7e1

File tree

5 files changed

+66
-1
lines changed

5 files changed

+66
-1
lines changed

app.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,3 +305,6 @@ def team_bo_kevin_miller():
305305
def team_tyler_shubham_mikaella():
306306
return render_template('teams/tyler_shubham_mikaella.html')
307307

308+
@app.route("/ahmet-khang-aizen")
309+
def team_ahmet_khang_aizen():
310+
return render_template('teams/ahmet-khang-aizen.html')

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: 2 additions & 1 deletion
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>
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)