Пример #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')