{% extends "base.html" %} {% block content %} {% if GOOGLE_ADSENSE and GOOGLE_ADSENSE.ads.index_top %} {% endif %} {% for article in articles_page.object_list %}

{{ article.title }}

{% if not SHOW_POST_AUTHOR %} {% set auth_str = '' %} {% else %} {% set auth_str = [] %} {% for auth in article.authors %} {{ auth_str.append('%s'|format(SITEURL, auth.url, auth)|safe) or ''}} {% else %} {{ auth_str.append('%s'|format(SITEURL, article.author.url, article.author)|safe) or ''}} {% endfor %} {% set auth_str = ' by ' ~ auth_str|join(', ') %} {% endif %} {{ _('Posted%(auth_str)s on %(when)s in %(category)s', auth_str=auth_str, when=article.locale_date, category='%s'|format(SITEURL, article.category.url, article.category)|safe) }} {% if article.tags and not HOME_HIDE_TAGS %} • {{ _('Tagged with') }} {% for tag in article.tags %} {{ tag }}{% if not loop.last %},{% endif %} {% endfor %} {% endif %} {% if 'post_stats' in PLUGINS %} • {{ article.stats['read_mins'] }} min read {% endif %}

{% if summarise or article.metadata['summary'] or SUMMARY_MAX_LENGTH %} {% if article.featured_image %} {% endif %} {{ article.summary }} {% if article.content != article.summary %}
{{ _('Continue reading') }} {% endif %} {% else %} {{ article.content }} {% endif %}
{% if not loop.last %}
{% endif %}
{% endfor %} {% include "partial/pagination.html" %} {% if GOOGLE_ADSENSE and GOOGLE_ADSENSE.ads.index_bottom %} {% endif %} {% endblock %}