-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathapp.py
63 lines (47 loc) · 1.21 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
@app.route("/index")
def index():
return render_template("index.html")
@app.route("/accordion")
def accordion():
return render_template("accordion.html")
@app.route("/carousel")
def carousel():
return render_template("carousel.html")
@app.route("/modal")
def modal():
return render_template("modal.html")
@app.route("/collapse")
def collapse():
return render_template("collapse.html")
@app.route("/dial")
def dial():
return render_template("dial.html")
@app.route("/dismiss")
def dismiss():
return render_template("dismiss.html")
@app.route("/drawer")
def drawer():
return render_template("drawer.html")
@app.route("/dropdown")
def dropdown():
return render_template("dropdown.html")
@app.route("/popover")
def popover():
return render_template("popover.html")
@app.route("/tabs")
def tabs():
return render_template("tabs.html")
@app.route("/tooltip")
def tooltip():
return render_template("tooltip.html")
@app.route("/input-counter")
def input_counter():
return render_template("input-counter.html")
@app.route("/datepicker")
def datepicker():
return render_template("datepicker.html")
if __name__ == '__main__':
app.run(debug=True)