9 lines
177 B
Python
9 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')
|