{% extends "base.html" %}
{% block content_title %}{% endblock %}
{% block content %}
{% if articles %}
{% for article in (articles_page.object_list if articles_page else articles) %}
{% include 'article_infos.html' %}
{{ article.summary }}
{% endfor %}
{% endif %}
{% endblock content %}