Archipelago/WebHost/landing.py

9 lines
194 B
Python
Raw Normal View History

2020-07-04 21:50:18 +00:00
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")