9 lines
192 B
Python
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")
|