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