{% load thumbnail cms_tags apphooks_config_tags aldryn_newsblog %}
{# The image is only shown on the detail view by using the condition "and detail_view" #} {% if article.featured_image_id %} {% prepend_prefix_if_exists "includes/article_featured_image_in_list.html" as article_template_name %} {% include article_template_name %} {% endif %} {% if article.categories.exists %}

{% for category in article.categories.all %} {{ category.name }} {% if not forloop.last %}, {% endif %} {% endfor %}

{% endif %}

{% render_model article "title" %}

{{ article.publishing_date|date }}

{% prepend_prefix_if_exists "includes/author.html" as author_template_name %} {% include author_template_name with author=article.author %} {% if article.tags %}

{% for tag in article.tags.all %} {{ tag.name }} {% endfor %}

{% endif %}
{% render_model article "lead_in" "" language "truncatechars_html:180" %}