Skip to content
Snippets Groups Projects
home.py 155 B
from flask import Blueprint, render_template

bp = Blueprint("home", __name__)

@bp.route("/")
def index():
    return render_template("home.html")