KankenOnline/kanken_online/forum.py
2024-10-14 11:54:07 +01:00

9 lines
192 B
Python

from flask import Blueprint, render_template
blueprint = Blueprint("forum", __name__, url_prefix="/forum")
@blueprint.route("/")
def index():
return render_template("forum/index.html")