{% extends "cranefly/profiles/profile.html" %} {% import "cranefly/macros.html" as macros with context %} {% block title %}{{ macros.page_title(_('Your News Feed')) }}{% endblock %} {% block container %}
{% if follows %} {% if posts %}
{% for item in posts %}
{{ item.post_preparsed|markdown_short(300) }}

{% endfor %}
{% else %}

{% trans username=user.username %}{{ username }}, there is nothing to display in your news feed... yet!{% endtrans %}

{% endif %} {% else %}

{% trans username=user.username %}{{ username }}, you have to follow other users in order to fill your news feed.{% endtrans %}

{% endif %}
{% endblock %} {% macro thread(item) -%} {{ item.thread.name }} {%- endmacro %} {% macro forum(forum) -%} {{ forum.name }} {%- endmacro %} {% macro username(user) -%} {{ user.username }} {%- endmacro %}