{% set current_page='feed' %} {% extends 'federation/master.html' %} {% block page_content %} {% if feeds|length == 0 %} Your feed is empty. {% endif %}
{% for feed in feeds %}
{% with feed=feed.content %}
{% include 'federation/feed.html' %}
{% endwith %}
{{ feed.created.strftime('%b, %-d %H:%M') }}
{% endfor %}
{% endblock %}