예제 #1
0
def generate_index():
    """
    Generate index page
    """
    with open(os.path.join(_deploy_dir, 'index.html'), 'w',
              encoding='utf-8') as f:
        f.write(handler.index())
예제 #2
0
파일: app.py 프로젝트: cuteluo1983/blog-a
def index():
    return handler.index()
예제 #3
0
def generate_index():
    """
    Generate index page
    """
    with open(os.path.join(_deploy_dir, 'index.html'), 'w', encoding='utf-8') as f:
        f.write(handler.index())
예제 #4
0
파일: app.py 프로젝트: BlogTANG/blog-a
def index():
    return handler.index()