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

Posts

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

{{ post.title }}

{{post.date_pub}}

{{post.author.username}}

{% endfor %} {% else%}

Nothig here ...

{%endif%}
{%endblock content%}