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
4 changes: 4 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@ def team_nick_val():
def team_luke_noah_maya():
return render_template('teams/luke_noah_maya.html')

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

@app.route("/durle_emily")
def team_durle_emily():
return render_template('teams/durle_emily.html')
Expand Down
6 changes: 3 additions & 3 deletions templates/students_2024.html
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ <h1> Summer 2024 Cohort </h1>
<div class="student-name">Youkyoung Kim</div>
<div> School: San Jose State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is working with a team to contribute to meaningful open source project. </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
<a href="team_5">Team 5's page</a>
</div>

<div class="student-container">
Expand Down Expand Up @@ -970,7 +970,7 @@ <h1> Summer 2024 Cohort </h1>
<div class="student-name">George Jones</div>
<div> School: El Camino College</div>
<p> What I'm most looking forward to about the CodeDay Labs internship is to gain more experience with contributing to OS projects </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
<a href="team_5">Team 5's page</a>
</div>

<div class="student-container">
Expand All @@ -980,7 +980,7 @@ <h1> Summer 2024 Cohort </h1>
<div class="student-name">Usman Tahir</div>
<div> School: El Camino College</div>
<p> What I'm most looking forward to about the CodeDay Labs internship is getting real experience working the software engineering field. </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
<a href="team_5">Team 5's page</a>
</div>

<div class="student-container">
Expand Down
8 changes: 8 additions & 0 deletions templates/teams/team_5.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<html>
<head>
</head>
<body>
We like watching Across the Spider-Verse.
</body>

</html>