{% extends "base.html" %} {% block content %} {% for article in articles_page.object_list %}

{{ article.title }}

{{ _('Posted on %(when)s in %(category)s', 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 PLUGINS and 'post_stats' in PLUGINS %} • {{ _('%(minutes)s min read', minutes=article.stats['read_mins']) }} {% 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" %} {% endblock %}