{% extends "base.html" %} {% block content %} {% load taggit_templatetags2_tags %} {% get_tagcloud as tags for 'application' %} {% include_tagcloud 'application.Post' %}
{% for post in posts %}
{{ post.published_date }}

{{ post.title }}

{{ post.text|linebreaks }}

Tags: {% for tag in post.tags.all %} {{ tag.name }} {% if not forloop.last %}, {% endif %} {% endfor %}

{{ post.author }}

{% endfor %}
{% endblock %}