import flask
home = flask.Blueprint("home", __name__, template_folder="templates")
@home.route("/")
def show():
return (flask.render_template("home/index.html"))