示例#1
0
def static_proxy(path):
    return app.send_static_file(os.path.join('styles', path))
示例#2
0
def components(path):
    return app.send_static_file(os.path.join('bower_components', path))
示例#3
0
def modules(path):
    return app.send_static_file(os.path.join('modules', path))
示例#4
0
def not_found():
    return app.send_static_file('404.html')
示例#5
0
def robots():
    return app.send_static_file('robots.txt')
示例#6
0
def favicon():
    return app.send_static_file('favicon.ico')
示例#7
0
def favicon():
    return app.send_static_file('favicon.ico')
示例#8
0
def scripts(path):
    return app.send_static_file(os.path.join('scripts', path))
示例#9
0
def fonts(path):
    return app.send_static_file(os.path.join('fonts', path))
示例#10
0
def modules(path):
    return app.send_static_file(os.path.join('modules', path))
示例#11
0
def static_proxy(path):
    return app.send_static_file(os.path.join('styles', path))
示例#12
0
def components(path):
    return app.send_static_file(os.path.join('bower_components', path))
示例#13
0
def robots():
    return app.send_static_file('robots.txt')
示例#14
0
def not_found():
    return app.send_static_file('404.html')
示例#15
0
def scripts(path):
    return app.send_static_file(os.path.join('scripts', path))
示例#16
0
def index():
    return app.send_static_file('index.html')
示例#17
0
def fonts(path):
    return app.send_static_file(os.path.join('fonts', path))
示例#18
0
def index():
    return app.send_static_file('index.html')