Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
__pycache__/
__pycache__/
.venv/
3 changes: 3 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,9 @@ def team_johnny_brent_drake():
def team_ahmet_khang_aizen():
return render_template('teams/ahmet-khang-aizen.html')

@app.route("/kat_aaron_will_jerry")
def team_kat_aaron_will_jerry():
return render_template('teams/team_kat_aaron_will_jerry.html')

@app.route("/sophia_phineas_aaron")
def team_sophia_phineas_aaron():
Expand Down
25 changes: 23 additions & 2 deletions templates/students_2025.html
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ <h1> Summer 2025 Cohort </h1>
<div class="student-name"> Jerry Nguyen </div>
<div> School: San Jose State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is collaborating on an open-source project with like-minded peers. </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
<a href="kat_aaron_will_jerry">Team Kat, Will, Aaron, Jerry</a>
</div>

<div class="student-container">
Expand Down Expand Up @@ -290,7 +290,28 @@ <h1> Summer 2025 Cohort </h1>
<div class="student-name"> Will Young </div>
<div> School: San Francisco State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining hands-on experiences and meeting amazing people! </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
<a href="/team_kat_aaron_will_jerry">Team page</a>
</div>

<div class="student-container">
<div>
<img src="static/img/powell_kayla.jpg">
</div>
<div class="student-name"> Kayla Powell </div>
<div> School: San Francisco State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining hands-on experiences and meeting amazing people! </p>
<a href="/team_kat_aaron_will_jerry">Team page</a>
</div>

<div class="student-container">
<div>
<img src="static/img/Aaron_Mundanilkunathil.png">
</div>
<div class="student-name"> Aaron Mundanilkunathil
</div>
<div> School: San Jose State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining hands-on experiences and meeting amazing people! </p>
<a href="/team_kat_aaron_will_jerry">Team page</a>
</div>

<div class="student-container">
Expand Down
12 changes: 12 additions & 0 deletions templates/teams/team_kat_aaron_will_jerry.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<html>
<head>

</head>

<body>
We are all Juniors at University that live in California :).

</body>


</html>