- {% if collection %}
- <section>
- <h1>{% trans "Collections" %}</h1>
- {% cache 3600 collection_box collection.pk LANGUAGE_CODE %}
- {% include 'catalogue/collection_box.html' %}
- {% endcache %}
- <a class="more" href="{% url 'catalogue_collections' %}">{% trans "See collections catalog" %}</a>
- </section>
- {% endif %}
-
- <section>
- <h1>{% trans "Recent publications" %}</h1>
- {% for book in last_published %}
- {{ book.mini_box }}
- {% endfor %}
- <a class="more" href="{% url 'recent_list' %}">{% trans "More recent publications" %}</a>
- </section>
-
- <div class="clearboth"></div>