{% extends 'base.html' %} {% block content %} {% if tag %} Posts tagged with "{{ tag.name }}" {% endif %} {% 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 %}