8 lines
177 B
Python
8 lines
177 B
Python
from flask import render_template, Blueprint
|
|
|
|
index_blueprint = Blueprint('index', __name__)
|
|
|
|
|
|
@index_blueprint.route('/')
|
|
def index():
|
|
return render_template('index.html')
|