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 @@ -24,6 +24,10 @@ def team_arm_phil_dyl():
def cohort_2024():
return render_template('students_2024.html')

@app.route("/2025")
def cohort_2025():
return render_template('students_2025.html')

@app.route("/shane_rashida_anthony")
def team_shane_rashida_anthony():
return render_template('teams/shane_rashida_anthony.html')
Expand Down
Binary file added static/img/Suchith_Gali.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<h1>CTI Summer Open Source Experience</h1>

<ul>
<li>
<a href="/2025">Summer 2025 Cohort</a>
</li>
<li>
<a href="/2024">Summer 2024 Cohort</a>
</li>
Expand Down
30 changes: 30 additions & 0 deletions templates/students_2025.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<html>
<head>
<link rel="stylesheet" href="static/css/style.css">
<title>Yo</title>
</head>
<body>
<h1> Summer 2025 Cohort </h1>
<div class="student-container">
<div>
<img src="static/img/utsab_pic.jpeg">
</div>
<div class="student-name"> Utsab Saha </div>
<div> School: CSU Monterey Bay </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<a href="nat_uts">Team Nat & Utsab</a>
</div>

<div class="student-container">
<div>
<img src="static/img/Suchith_Gali.jpeg">
</div>
<div class="student-name"> Suchith Gali </div>
<div> School: UCM </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning valuable job and teamworking skills from experienced engineers.</p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>


</body>
</html>