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

{{ article.title }}

{% autoescape false %} {{ _('Posted on %(when)s in %(category)s', when=article.locale_date, category='%s' % (SITEURL, article.category.url, article.category)) }} {% endautoescape %} {% if article.tags %} • {{ ngettext('Tag', 'Tags', article.tags|count) }}: {% for tag in article.tags %} {{ tag }}{% if not loop.last %},{% endif %} {% endfor %} {% endif %} {% if DISQUS_SITENAME %} • {{ _('Leave a comment') }} {% endif %}

{% if summarise or article.metadata['summary'] or SUMMARY_MAX_LENGTH %} {{ article.summary }} {{ _('Continue reading') }} {% else %} {{ article.content }} {% endif %}
{% if not loop.last %}
{% endif %}
{% endfor %} {% include "partial/pagination.html" %} {% endblock %} {% block additional_js %} {% include "partial/disqus_count.html" %} {% endblock %}