Esempio n. 1
0
def favicon():
    return app.send_static_file('favicon.ico')
Esempio n. 2
0
def index():
    return app.send_static_file('index.html')
Esempio n. 3
0
def return_css(path):
    return app.send_static_file('css/%s' % path)
Esempio n. 4
0
def return_img(path):
    return app.send_static_file('img/%s' % path)
Esempio n. 5
0
def return_js(path):
    return app.send_static_file('js/%s' % path)