示例#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()