{% extends 'base.html' %} {% block title %}Список статей{% endblock %} {% block content %} {% autoescape off %}
{% if posts %} {% for post in posts %}
{{post.title}}

{{ post.text | truncatewords_html:20 }}

{% endfor %} {% endif %}
{% endautoescape %} {% endblock %}