{% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %} {% if articles and not articles_page.has_previous() %} {% with article = articles[0] %}

{{ article.title }}

{% include 'article_infos.html' %}
{{ article.content }} {% include 'related_posts.html' %} {% include 'comments.html' %}
{% endwith %} {% with article_list = articles_page.object_list[1:] %}
{% include 'article_list.html' %}
{% endwith %} {% else %} {% with article_list = articles_page.object_list %}
{% include 'article_list.html' %}
{% endwith %} {% endif %} {% endblock %}