Beispiel #1
0
def tagList(tag):

    posts = TagService.get_post_byTag(tag)

    return render_template('web/taginfo.html', posts=posts)
Beispiel #2
0
def tags():

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