8 lines
168 B
Python
8 lines
168 B
Python
import flask
|
|
|
|
page = flask.Blueprint("home", __name__, template_folder="templates")
|
|
|
|
@page.route("/")
|
|
def show():
|
|
return (flask.render_template("home/index.html"))
|