2022-07-07 05:19:28 +00:00
|
|
|
from . import portfolio_blueprint
|
|
|
|
from flask import render_template, abort
|
|
|
|
|
2022-07-13 05:15:23 +00:00
|
|
|
categories = ['residential', 'commercial', 'office', 'industrial']
|
2022-07-07 05:19:28 +00:00
|
|
|
|
|
|
|
@portfolio_blueprint.route('/')
|
|
|
|
def index():
|
2022-07-13 05:15:23 +00:00
|
|
|
return render_template('index.html')
|
|
|
|
|
|
|
|
@portfolio_blueprint.route('/gallery/')
|
|
|
|
def gallery():
|
|
|
|
return render_template('gallery.html')
|