{% 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 %}