9 lines
141 B
Python
9 lines
141 B
Python
from flask import render_template
|
|
|
|
from . import index_bp
|
|
|
|
|
|
@index_bp.route('/')
|
|
def index():
|
|
return render_template('index/index.html')
|