2020-07-04 21:50:18 +00:00
|
|
|
from flask import render_template
|
2020-07-11 14:59:37 +00:00
|
|
|
from WebHostLib import app, cache
|
2020-07-04 21:50:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
@cache.memoize(timeout=300)
|
|
|
|
@app.route('/', methods=['GET', 'POST'])
|
|
|
|
def landing():
|
|
|
|
return render_template("landing.html")
|