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

12 lines
182 B
Python

# -*- coding: utf-8 -*-
from flask import Blueprint, render_template
home = Blueprint('home', __name__)
@home.route('/')
def homepage():
return render_template('home.html')