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

{{ article.title }}

Posted on {{ article.locale_date }} in {{ article.category }} {% if article.tags %} • Tagged with {% 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 %}