{% extends "djangocms_blog/base.html" %} {% load i18n %} {% load page_meta_tags %} {% load cms_tags %} {% load menu_tags %} {% block title_tag %} {% if author %} {% trans "Articles by" %} {{ author.get_full_name }} {% elif archive_date %} {% trans "Archive" %} – {% if month %}{{ archive_date|date:'F' }} {% endif %}{{ year }} {% elif tagged_entries %} {% trans "Tag" %} – {{ tagged_entries|capfirst }} {% elif category %} {% trans "Category" %} – {{ category }} {% else %} {% page_attribute "page_title" %} {% endif %} {% endblock title_tag %} {% block seo_meta_tags %} {% page_meta request.current_page as meta %} {% include "djangocms_blog/partials/seo_meta_tags.html" with meta=meta %} {% endblock seo_meta_tags %} {% block cms_title %} {% if author %}

{% trans "Articles by" %} {{ author.get_full_name }}

{% elif archive_date %}

{% trans "Archive" %} – {% if month %}{{ archive_date|date:'F' }} {% endif %}{{ year }}

{% elif tagged_entries %}

{% trans "Tag" %} – {{ tagged_entries|capfirst }}

{% elif category %}

{% trans "Category" %} {{ category }}

{% else %} {{ block.super }} {% endif %} {% endblock cms_title %} {% block content_blog %}
{% for post in post_list %} {% include "djangocms_blog/includes/blog_item.html" with post=post image="true" TRUNCWORDS_COUNT=TRUNCWORDS_COUNT %} {% empty %}

{% trans "No article found." %}

{% endfor %} {% if author or archive_date or tagged_entries %}

{% trans "Back" %}

{% endif %} {% if is_paginated %} {% endif %}
{% endblock content_blog %}