Exemplo n.º 1
0
def get_latest_post(page):
    try:
        pagination = Post.get_posts_pagination(page=page, per_page=PER_PAGE)
        return render_template("index.html", pagination=pagination, menu_items=default.categories)
    except Exception as e:
        abort(404)