Kastg commited on
Commit
f180af7
·
verified ·
1 Parent(s): b70fed0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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():