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