{% extends "base.html" %} {% block head %} {{ super() }} {% if DESCRIPTION %} {% endif %} {% endblock %} {% block title %} {{ SITENAME }} | {{ SITESUBTITLE }} {% endblock %} {% block page_header %} Articles {% endblock %} {% block content %} {% for article in articles_page.object_list %}

{{ article.title }}{% if article.link %} {% endif %}

{{ article.summary|striptags }}
{% if not loop.last %}
{% endif %} {% endfor %} {% include 'include/pagination.html' %} {% endblock %}