2023-06-03 21:32:42 -04:00
|
|
|
import flask
|
|
|
|
|
2023-06-05 12:47:29 -04:00
|
|
|
page = flask.Blueprint("home", __name__, template_folder="templates")
|
2023-06-04 06:51:13 -04:00
|
|
|
|
2023-06-05 12:47:29 -04:00
|
|
|
@page.route("/")
|
2023-06-04 06:51:13 -04:00
|
|
|
def show():
|
2023-06-03 21:32:42 -04:00
|
|
|
return (flask.render_template("home/index.html"))
|