Spaces:
Running
Running
Kastg
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -11,15 +11,15 @@ static_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)))
|
|
11 |
|
12 |
@app.route('/css')
|
13 |
def css():
|
14 |
-
return send_from_directory(os.path.join(static_dir, 'css')
|
15 |
|
16 |
@app.route('/js')
|
17 |
def js():
|
18 |
-
return send_from_directory(os.path.join(static_dir, 'js')
|
19 |
|
20 |
@app.route('/img')
|
21 |
def img():
|
22 |
-
return send_from_directory(os.path.join(static_dir, 'img')
|
23 |
|
24 |
@app.route('/')
|
25 |
def index():
|
|
|
11 |
|
12 |
@app.route('/css')
|
13 |
def css():
|
14 |
+
return send_from_directory(os.path.join(static_dir, 'css'))
|
15 |
|
16 |
@app.route('/js')
|
17 |
def js():
|
18 |
+
return send_from_directory(os.path.join(static_dir, 'js'))
|
19 |
|
20 |
@app.route('/img')
|
21 |
def img():
|
22 |
+
return send_from_directory(os.path.join(static_dir, 'img'))
|
23 |
|
24 |
@app.route('/')
|
25 |
def index():
|