{% extends "aldryn_blog/base.html" %} {% load i18n thumbnail aldryn_blog_tags %} {% block blog_breadcrumb %}
  • »
  • {% if author %}
  • {{ author.get_full_name }}
  • {% elif archive_date %} {% if year and month and day %}
  • {{ year }} »
  • {{ month }} »
  • {{ day }}
  • {% elif year and month %}
  • {{ year }} »
  • {{ month }}
  • {% elif year %}
  • {{ year }}
  • {% endif %} {% elif tagged_entries %}
  • {{ tagged_entries|capfirst }}
  • {% endif %} {% endblock blog_breadcrumb %} {% block content_blog %}
    {% block blog_title %}

    {% if author %}{% trans "Entries by" %} {{ author.get_full_name }}{% elif archive_date %} {% trans "Blog Archive" %} – {% if day %}{{ archive_date|date:'d' }}. {% endif %}{% if month %}{{ archive_date|date:'F' }} {% endif %}{{ year }}{% elif tagged_entries %} {% trans "Blog Tag" %} – {{ tagged_entries|capfirst }}{% else %} {% trans "Blog" %}{% endif %}

    {% endblock %} {% include "aldryn_blog/includes/blog_items.html" with posts=latest|posts:object_list image="true" %} {% include "aldryn_common/paginator.html" %} {% if author or archive_date or tagged_entries %}

    {% trans "Back" %}

    {% endif %}
    {% endblock %}