{% import "macros.html" as macros %} {% import "components.html" as components %} {% extends "communities/base.html" %} {% block content %}
{% if user %}
{{ text "communities:label.create_post" }}
{% endif %}
{{ icon "newspaper" }} {{ text "communities:label.posts" }}
{% for post in feed %} {{ components::post(post=post[0], owner=post[1], secondary=true, show_community=false) }} {% endfor %}
{% endblock %}