{% extends "djangocms_stories/base.html" %} {% load i18n easy_thumbnails_tags cms_tags %}{% spaceless %} {% block canonical_url %}{% endblock canonical_url %} {% block content_blog %} {% block blog_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" %} – {% render_model category "name" %}{% endif %} {% if category.abstract %} {% render_model category "abstract" %} {% endif %} {% endblock %} {% for post_content in postcontent_list %} {% include "djangocms_stories/includes/blog_item.html" with post_content=post_content 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 %} {% if page_obj.has_previous %} « {% trans "previous" %} {% endif %} {% trans "Page" %} {{ page_obj.number }} {% trans "of" %} {{ paginator.num_pages }} {% if page_obj.has_next %} {% trans "next" %} » {% endif %} {% endif %} {% endblock %} {% endspaceless %}
{% trans "No article found." %}
{% trans "Back" %}