flask/tests/blueprintapp/apps/frontend/__init__.py

9 lines
204 B
Python
Raw Normal View History

from flask import Blueprint, render_template
2011-07-16 01:16:03 +02:00
frontend = Blueprint('frontend', __name__, template_folder='templates')
@frontend.route('/')
def index():
return render_template('frontend/index.html')