forked from CTI-CodeDay/GitWorkflowIntro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
33 lines (24 loc) · 752 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route("/")
def home():
return render_template('index.html')
@app.route("/2022")
def cohort_2022():
return render_template('students_2022.html')
@app.route("/2023")
def cohort_2023():
return render_template('students_2023.html')
@app.route("/nat_uts")
def team_nat_uts():
return render_template('teams/nat_uts.html')
@app.route("/alison_rob_shawn")
def team_alison_rob_shawn():
return render_template('teams/alison_rob_shawn.html')
@app.route("/nick_val")
def team_nick_val():
return render_template('teams/nick_val.html')
@app.route("/luke_noah_maya")
def team_luke_noah_maya():
return render_template('teams/luke_noah_maya.html')