9 lines
150 B
Python
9 lines
150 B
Python
from flask import Blueprint, render_template
|
|
|
|
bp = Blueprint("main", __name__)
|
|
|
|
@bp.route("/")
|
|
def index():
|
|
return render_template("index.html")
|
|
|