{%extends 'base.html'%} {%load static%} {%block extracss%} {%endblock extracss%} {%block content%}

Posts

{% if user.is_authenticated %} Add new post {%endif%} {% for post in page_obj %}

{{ post.title }}

{{post.date_pub}}

{{post.author.username}}

{% endfor %}
{%endblock content%}