예제 #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))