コード例 #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)