{% extends "base.html" %} {% block body %}
{% for post in news_feed.data %}
{{ post.from.name|escape }} {% if post.message %}{{ post.message|escape }}{% endif %}
{% if post.caption or post.picture %}
{% if post.picture %}
{% endif %} {% if post.name %} {% endif %} {% if post.caption %}
{{ post.caption|escape }}
{% endif %} {% if post.description %}
{{ post.description|escape }}
{% endif %}
{% endif %}
{{ post.created_time|timesince }} ago
{% endfor %}
{% endblock %}