-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
50 lines (32 loc) · 961 Bytes
/
app.py
File metadata and controls
50 lines (32 loc) · 961 Bytes
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template("home.html")
@app.route('/qui')
def qui():
return render_template("qui.html")
@app.route('/rencontres')
def rencontres():
return render_template("rencontres.html")
@app.route('/ressources')
def ressources():
return render_template("ressources.html")
@app.route('/competitions')
def competitions():
return render_template("competitions.html")
@app.route('/projets')
def projets():
return render_template("projets.html")
@app.route('/sociocode')
@app.route('/codesprint')
def codesprint():
return render_template("codesprint.html")
@app.route('/services')
def services():
return render_template("services.html")
@app.route('/contact')
def contact():
return render_template("contact.html")
if __name__ == '__main__':
app.run(debug=True)