Skip to content
Open
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
12 changes: 8 additions & 4 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ 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("/2026")
def cohort_2026():
return render_template('students_2026.html')

@app.route("/teamASC")
def teamASC():
Expand All @@ -41,10 +49,6 @@ def teamASC():
def YAM():
return render_template('teams/YAM.html')

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

@app.route("/adpt")
def adpt():
return render_template('teams/adpt.html')
Expand Down
Binary file added static/img/maor.jpg
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="/2026">Summer 2026 Cohort</a>
</li>
<li>
<a href="/2025">Summer 2025 Cohort</a>
</li>
Expand Down
23 changes: 23 additions & 0 deletions templates/students_2026.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<html>

<head>
<link rel="stylesheet" href="static/css/style.css">
<title>Yo</title>
</head>

<body>
<h1> Summer 2026 Cohort </h1>

<div class="student-container">
<div>
<img src="static/img/maor.jpg">
</div>
<div class="student-name"> Maor Barzilay </div>
<div> School: CSU Long Beach </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is being able to broaden my technical and people skills hands-on
</p>
<a href="">Team: N/A </a>
</div>
</body>

</html>