{% load static %} {% load i18n %} {% load thumbnail %} {% load absurl %} {# we suppose here that "col" has been defined #}
{% with items=col.first_four_items %}
{% for item in items|slice:":2" %} {% include 'partial/little_square_item_for_collection.html' %} {% endfor %}

{{ col.title|default:_("No title") }}

{% trans "by" %} {{ col.author }}

{% for item in items|slice:"2:4" %} {% include 'partial/little_square_item_for_collection.html' %} {% endfor %}
{% endwith %}