{% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %}
{% if articles %} {% for article in (articles_page.object_list if articles_page else articles) %} {% if loop.index == 1 %}
{{ article.title }}

{{ article.content }}

{% else %}
{{ article.title }}

{{ article.summary|striptags }}

Read More
{% endif %} {% endfor %} {% if DEFAULT_PAGINATION and articles_paginator.num_pages > 1 %} {% endif %} {% endif %}
{% endblock %}