the_works/the_works/views/home.py

9 lines
152 B
Python

from flask import Blueprint, render_template
bp = Blueprint("home", __name__)
@bp.route("/")
def home():
return render_template("views/home.html")