コード例 #1
0
ファイル: views.py プロジェクト: kevgh/wheresbrendan
def Index(*args, **kwargs):
    """Return the index page."""
    return app.send_static_file('index.html')
コード例 #2
0
ファイル: views.py プロジェクト: kevgh/wheresbrendan
def Images(filename):
    return app.send_static_file(os.path.join('images', filename))
コード例 #3
0
ファイル: views.py プロジェクト: brendanebers/wheresbrendan
def Images(filename):
    """Return static images."""
    return app.send_static_file(os.path.join('images', filename))