{% extends "structure/_base.html" %} {%- block content -%} {%- if current_user.is_anonymous() and not session.return_anon %}
{% include "item/_welcome.html" %}
{% endif -%}
{%- for item in items['items'] %}
{%- if item.kind == 'post' %} {% include "item/_post.html" %} {% elif item.kind == 'comment' %} {% include "item/_comment.html" %} {% elif item.__tablename__ == 'user' %} {% include "user/_user.html" %} {% endif -%}
{% endfor -%}
{%- if items['has_next'] %} {% endif -%} {% endblock %}