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

{{ article.title }}

{% trans %}Posted on{% endtrans %} {{ article.locale_date }} {% trans %}in{% endtrans %} {{ article.category }} {% if article.tags %} • {% trans %}Tagged with{% endtrans %} {% for tag in article.tags %} {{ tag }}{% if not loop.last %},{% endif %} {% endfor %} {% endif %} {% if DISQUS_SITENAME %} • {% trans %}Leave a comment{% endtrans %} {% endif %}

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