8 lines
160 B
Python
8 lines
160 B
Python
from flask import Blueprint, render_template
|
|
|
|
home_bp = Blueprint("home", __name__)
|
|
|
|
|
|
@home_bp.route("/")
|
|
def index():
|
|
return render_template("index.html")
|