{% extends "base.html" %} {% block content %} {% for article in articles_page.object_list|sort(reverse=True,attribute='modified') %}

{{ article.title }}

{{ _('Posted on %(when)s (last modification %(modified)s) in %(category)s', when=article.locale_date, modified=article.locale_modified, 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 }}
{{ _('Continue reading') }} {% else %} {{ article.content }} {% endif %}
{% if not loop.last %}
{% endif %}
{% endfor %} {% include "partial/pagination.html" %} {% endblock %}