{% extends "base.html" %} {% block title %}{{ SITENAME }} — News{%endblock%} {% block head %} {{ super() }} {% endblock head %} {% block content %}
{% block content_title %}

Recent News

{% endblock %}
{% for article in articles_page.object_list %}

{{ article.title }}

{% if article.summary %} {{ article.summary }} {% else %} {{ article.content|truncate() }} {% endif %}

{% endfor %} {% if articles_page.has_other_pages() %} {% include 'pagination.html' %} {% endif %}
{% endblock content %}