{% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %}

News

{% if articles %} {% for article in articles_page.object_list %}

{{ article.title }}

Posted on {% if article.tags %} in {% for tag in article.tags %} {% if not loop.last %} , {% endif %} {% endfor %} {% endif %}
{{ article.summary }}

{% endfor %} {# For article #} {% endif %} {% include "pagination.html" %} {% endblock content %}