Splashscreen - platshållare

This commit is contained in:
2017-01-18 20:42:36 +01:00
parent df90e4dd9e
commit 778d00dcf6
6 changed files with 54 additions and 2 deletions

View File

@@ -1,12 +1,16 @@
#!/usr/bin/env python3
from flask import Flask
from flask import Flask, render_template, url_for, send_from_directory
app = Flask(__name__)
@app.route('/')
def hello_world():
return "Design by Lovén"
return render_template('splash.html')
@app.route('/favicon.ico')
def favicon():
return send_from_directory('static', 'favicon.ico')
if __name__ == '__main__':
app.run(debug=True)