{% extends 'blog/base.html' %} {% comment %} {% load pagination_tags %} {% endcomment %} {% block content %} {% if posts %} {% for post in posts %}

{{ post.title }}

{{ post.published_date}}
{% if post.tags.names %}
{% for tag in post.tags.names %} {{ tag }} {% endfor %}
{% endif %}
{{ post.text|safe|linebreaksbr|truncatewords:80 }}
{% endfor %} {% else %}

Ничего не найдено

{% endif %} {% endblock content %}