WebHost: provide a landing page

This commit is contained in:
Fabian Dill
2020-07-04 23:50:18 +02:00
parent 11405f4b19
commit fc76698997
7 changed files with 72 additions and 152 deletions

8
WebHost/landing.py Normal file
View File

@@ -0,0 +1,8 @@
from flask import render_template
from WebHost import app, cache
@cache.memoize(timeout=300)
@app.route('/', methods=['GET', 'POST'])
def landing():
return render_template("landing.html")