Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/websdk/flask/testsuite/test_apps/blueprintapp/apps/frontend/__init__.py
blob: 69c8666a8489f334d87f1287c0b0da5036f30dd4 (plain)
1
2
3
4
5
6
7
8
from flask import Blueprint, render_template

frontend = Blueprint('frontend', __name__, template_folder='templates')


@frontend.route('/')
def index():
    return render_template('frontend/index.html')