コード例 #1
0
ファイル: static_files.py プロジェクト: Acesse-ZCo/confidant
def static_proxy(path):
    return app.send_static_file(os.path.join('styles', path))
コード例 #2
0
ファイル: static_files.py プロジェクト: Acesse-ZCo/confidant
def components(path):
    return app.send_static_file(os.path.join('bower_components', path))
コード例 #3
0
ファイル: static_files.py プロジェクト: Acesse-ZCo/confidant
def modules(path):
    return app.send_static_file(os.path.join('modules', path))
コード例 #4
0
ファイル: static_files.py プロジェクト: Acesse-ZCo/confidant
def not_found():
    return app.send_static_file('404.html')
コード例 #5
0
ファイル: static_files.py プロジェクト: Acesse-ZCo/confidant
def robots():
    return app.send_static_file('robots.txt')
コード例 #6
0
def favicon():
    return app.send_static_file('favicon.ico')
コード例 #7
0
ファイル: static_files.py プロジェクト: Acesse-ZCo/confidant
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
ファイル: static_files.py プロジェクト: Acesse-ZCo/confidant
def scripts(path):
    return app.send_static_file(os.path.join('scripts', path))
コード例 #16
0
ファイル: static_files.py プロジェクト: Acesse-ZCo/confidant
def index():
    return app.send_static_file('index.html')
コード例 #17
0
ファイル: static_files.py プロジェクト: Acesse-ZCo/confidant
def fonts(path):
    return app.send_static_file(os.path.join('fonts', path))
コード例 #18
0
def index():
    return app.send_static_file('index.html')