fmartingr.com-legacy/fmartingrcom/apps/portfolio.py

12 lines
244 B
Python

# -*- coding: utf-8 -*-
from flask import Blueprint, render_template
portfolio = Blueprint('portfolio', __name__)
@portfolio.route('/projects/')
def portfolio_list():
context = {}
return render_template('portfolio.html', **context)