{% extends "aacore/base.html" %} {% block body %}
{% for post in posts %}
{% if post.photos.all %} {% for photo in post.photos.all %} {{ {% endfor %} {% endif %} {{ post.body|safe }} {{ post.caption|safe }} {{ post.text|safe }}
{% if post.source %}
Source
{{ post.source|safe }}
{% endif %} {% if post.tags.all %}
Tags
{% for tag in post.tags.all %}
{{ tag }}
{% endfor %} {% endif %}

Posted by {{ post.blog_name }} on {{ post.date }}

{% endfor %}
{% endblock %}