9 lines
164 B
Python
9 lines
164 B
Python
from flask import Blueprint, render_template
|
|
|
|
blueprint = Blueprint('core', __name__)
|
|
|
|
|
|
@blueprint.route('/')
|
|
def index():
|
|
return render_template('index.html')
|