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 @@ -4,6 +4,10 @@

app = Flask(__name__)

@app.route("/justin-qilan-k")
def justin_qilan_k():
return render_template("teams/justin-qilan-k.html")

@app.route("/")
def home():
return render_template('index.html')
Expand Down
2 changes: 1 addition & 1 deletion templates/students_2025.html
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ <h1> Summer 2025 Cohort </h1>
<div class="student-name"> Justin Saminathen </div>
<div> School: San Jose State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining experience on open-source contributions as part of a team. </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
<a href="/justin-qilan-k">Team page</a>
</div>
<div class="student-container">
<div>
Expand Down
9 changes: 9 additions & 0 deletions templates/teams/justin-qilan-k.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<html>
<head>

</head>
<body>
We all like pork ramen. On weekends, on our free time, we play mobile games.
Our career goals are to be the best we could be as software engineers.
</body>
</html>