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

{{ article.title }}

Posted on {{ article.locale_date }} {% 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 %}

{{ article.content }} {% endfor %} {% if articles_page.has_other_pages() %} {% include 'pagination.html' %} {% endif %} {% endblock %} {% block scripts %} {{ super() }} {% include 'disqus_count.html' %} {% endblock %}