{% extends "blarg/views/templates/base.html" %} {% block content %} {% if posts|is-empty %}

There are no posts.

{% else %} {% for post in posts %} {% include "blarg/views/templates/posts/post.html" %} {% endfor %} {% include "blarg/views/templates/posts/publishmodal.html" %} {% include "blarg/views/templates/posts/deletemodal.html" %} {% endif %} {% endblock %}