Added a migrated moduleapp as blueprint app

This commit is contained in:
Armin Ronacher 2011-06-17 03:39:49 +02:00
parent e17e74d3a7
commit 37fab78887
9 changed files with 65 additions and 3 deletions

View file

@ -0,0 +1,8 @@
from flask import Blueprint, render_template
frontend = Blueprint(__name__)
@frontend.route('/')
def index():
return render_template('frontend/index.html')