コード例 #1
0
ファイル: blog.py プロジェクト: wangyu190810/22too
def blog_classify_by_date(date):
    return render_template("index.html", blogs=Blog.blog_tag(g.db, date))
コード例 #2
0
def blog_classify_by_date(date):
    return render_template("index.html", blogs=Blog.blog_tag(g.db, date))
コード例 #3
0
ファイル: blog.py プロジェクト: wangyu190810/22too
def blog_classify_by_tag(tag):
    return render_template("index.html", blogs=Blog.blog_tag(g.db, tag))
コード例 #4
0
def blog_classify_by_tag(tag):
    return render_template("index.html", blogs=Blog.blog_tag(g.db, tag))