{% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %} {% if articles %} {% for article in articles %} {% if loop.index == 1 %} {% if loop.length > 1 %} Other articles {% endif %} {% else %} {{ article.title }} {% include 'article_infos.html' %} {{ article.summary }} read more {% endif %} {% endfor %} {% else %} Pages {% for page in PAGES %} {{ page.title }} {% endfor %} {% endif %} {% endblock content %}