Posts management

View and manage all published posts.

{% block posts %} {% if posts.is_empty() %}

No posts yet

Published posts will appear here.

{% else %}
{% for post in posts %} {% include "dashboard/posts/card.html" %} {% endfor %}
{% endif %}
Page: {{ posts_current_page }}
{% endblock %}