7 lines
No EOL
151 B
Python
7 lines
No EOL
151 B
Python
from flask import Blueprint, render_template
|
|
|
|
bp = Blueprint('main', __name__)
|
|
|
|
@bp.route("/")
|
|
def homepage():
|
|
return render_template("index.html") |