From 531f9bf63d34a9e54837c8a0bf69da9a08a82525 Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 3 Sep 2020 10:51:58 +0200 Subject: Restructure Files and Directories --- main.py | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'main.py') diff --git a/main.py b/main.py index 3203bf5..670c7af 100755 --- a/main.py +++ b/main.py @@ -30,19 +30,14 @@ app = Flask(__name__) @app.route('/') def index(): - return current_app.send_static_file('index.html') + return render_template('index.html') -@app.route('/style.css') -def style(): - return current_app.send_static_file('style.css') - - -@app.route('/favicon.ico') -def favicon(): - return current_app.send_static_file('favicon.ico') +@app.route('/static/css/') +def css(css_file): + return current_app.send_static_file("css/{}".format(css_file)) if __name__ == '__main__': serve(app, listen='*:8080') # production server - #app.run() # test server + #app.run() # debug server - NOT FOR PRODUCTION! -- cgit v1.2.3-70-g09d2