acm-site/acmsite/main/__init__.py
2024-03-03 17:52:34 -05:00

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")