Started project with initial Flask layout
This commit is contained in:
7
app/controllers/top.py
Normal file
7
app/controllers/top.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from flask import Blueprint, render_template
|
||||
|
||||
top_bp = Blueprint('top', __name__, url_prefix='/')
|
||||
|
||||
@top_bp.route('/')
|
||||
def profile():
|
||||
return render_template('top/dashboard.jinja')
|
||||
Reference in New Issue
Block a user