8 lines
191 B
Python
8 lines
191 B
Python
|
from . import portfolio_blueprint
|
||
|
from flask import render_template, abort
|
||
|
|
||
|
portfolio_titles = ['Index']
|
||
|
|
||
|
@portfolio_blueprint.route('/')
|
||
|
def index():
|
||
|
return render_template('index.html')
|