def tagList(tag): posts = TagService.get_post_byTag(tag) return render_template('web/taginfo.html', posts=posts)
def tags(): tags = TagService.get_all_tags() print(tags) return render_template('web/tag.html', tags=tags)