{% extends "root.html" %} {% block head %} {{ stack.name }} - {{ config.name }} {% endblock %} {% block body %} {{ macros::nav() }}
{{ macros::timelines_nav(selected="stacks") }}
{{ icon "list" }} {{ stack.name }}
{% if user and user.id == stack.owner -%} {{ icon "pencil" }} {{ text "general:action.manage" }} {%- endif %}
{% if list|length == 0 -%}

No posts yet! Maybe add a user to this stack!

{%- endif %} {% for post in list %} {% if post[2].read_access == "Everybody" -%} {% if post[0].context.repost and post[0].context.repost.reposting -%} {{ components::repost(repost=post[3], post=post[0], owner=post[1], secondary=true, community=post[2], show_community=true) }} {% else %} {{ components::post(post=post[0], owner=post[1], question=post[4], secondary=true, community=post[2]) }} {%- endif %} {%- endif %} {% endfor %} {{ components::pagination(page=page, items=list|length) }}
{% endblock %}