portfolio-website/project/portfolio/routes.py

8 lines
191 B
Python
Raw Normal View History

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