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