7 lines
152 B
Python
7 lines
152 B
Python
from flask import Blueprint, render_template
|
|
|
|
main = Blueprint("main", __name__)
|
|
|
|
@main.route("/")
|
|
def index():
|
|
return render_template("index.jinja")
|