예제 #1
0
파일: post.py 프로젝트: Ncare/blog_flask
def tagList(tag):

    posts = TagService.get_post_byTag(tag)

    return render_template('web/taginfo.html', posts=posts)
예제 #2
0
파일: post.py 프로젝트: Ncare/blog_flask
def tags():

    tags = TagService.get_all_tags()
    print(tags)
    return render_template('web/tag.html', tags=tags)