{% extends "base.html" %} {% block head %} {{ super() }} {% endblock %} {% block content %} create new post {% for post in posts|sort(attribute="id", reverse=True) %}

id: {{ post.id }}

{{ post.title }}

{{ post.description or "" }}

{% endfor %} {% endblock %}