{% extends "base.html" %} {% block content %}
{% for article in articles_page.object_list %}

{{ article.title }}

{{article.headline}}

{{ article.date | strftime('%b') }} {{ article.date | strftime('%d') }} {{ article.date | strftime('%Y') }}

Date: {{ (article.modified or article.date).strftime('%Y-%m-%d') }}   Author{% if article.authors|count > 1 %}s{% endif %}: {% for author in article.authors %}{{author}}{% if not loop.last %}, {% endif %}{%endfor%} {% if article.tags|count %}   Tag{% if article.tags|count > 1 %}s{% endif %}: {% for tag in article.tags %}{{tag}}{% if not loop.last %}, {% endif %}{%endfor%} {% endif %}


{% if article.has_summary %} {{ article.summary }} Читать дальше ➡️ {% else %} {{ article.content }} {% endif %}
{% if not loop.last %}
{% endif %} {% endfor %} {% if articles_page.has_other_pages() %} {% include 'pagination.html' %} {% endif %}
{% endblock content %}