{% extends 'base_index.html' %} {% block title %}Статьи{% endblock %} {% block head %} {% endblock %} {% block content %}

Обучающие статьи

Loader image

{% for article in articles %}
{{ article.section.title }}{{ article.date }}
{{ article.preview.description }}
{% if article.tags %}
{% for tag in article.tags.content %}#{{ tag.name }}{% endfor %}
{% endif %}
{{ article.favorites.count }} {{ article.views.count }}
{% endfor %}
{% endblock %} {% block js %} {% endblock %}