{% extends 'base.html' %} {% block content %} {% for post in posts %} {% load taggit_templatetags2_tags %}
{{ post.published_date }}

{{ post.title }}

{{ post.text|linebreaks }}

{% for tag in post.tags.all %} {{ tag.name }}, {% endfor %}

{{ post.author }}

{% endfor %} {% include "taggit_templatetags2/tagcanvas_include_js_static.html" %}
{% endblock %}