{% extends 'programmer/base.html' %} {% block content %}
{% for cat in categories %} {{ cat.name }} {% endfor %}
{% for article in articles %}

{{ article.title }}

{{ article.content|truncatewords:30 }}

📅 {{ article.time_create|date:"d.m.Y" }} 👁 {{ article.views_count }}
{% empty %}

Статей пока нет.

{% endfor %}
{% if page_obj.has_other_pages %} {% endif %} {% endblock %}