{# Used on the home page to display posts from multiple users. Also used to display posts from multiple users in a single users's feed. #} {% extends "page.html" %} {% block body %}
{%- for display_item in items -%} {%- let item = display_item.item() -%} {%- let row = display_item.row() -%} {%- let uidz = row.item.user.to_base58() -%} {%- let signature = row.item.signature.to_base58() -%} {%- let post = item.get_post() -%}
{% if post.get_title().len() > 0 %}

{{ post.get_title() }}

{% endif %} {% if show_authors -%} {%- endif %} {{ post.get_body()|markdown_with(row.item.user, row.item.signature)|safe }}
{% endfor -%} {% match display_message -%} {% when Some with (display_message) %}

{{display_message}}

{%- else -%} {%- endmatch %}
{% endblock %}