{% include "core/section_header_partial.html" with url=page image=page.image title=self.title extra_classes=self.get_effective_extra_style_hints %}
{% load_child_articles_for_section self as articles %}
{% with articles|first as article %}
{% if article %}
{% include "core/article_intro_partial.html" with article=article %}
{% endif %}
{% endwith %}
{% load_child_articles_for_section self as articles %}
{% for article in articles|slice:"1:" %}
{% include "core/article_intro_partial.html" with article=article square_image=True %}
{% endfor %}
{% if articles %}
{% if articles_paginated.has_previous %}
←
{% endif %}
Page {{ articles_paginated.number }} of {{ articles_paginated.paginator.num_pages }}
{% if articles_paginated.has_next %}
→
{% endif %}