{% extends 'landing/layout.html' %} {% load i18n %} {% load cache %} {% block panel %}

{% trans "Recent Books" %}

{% get_current_language as LANGUAGE_CODE %} {% cache 60 * 60 LANGUAGE_CODE %}
{% include 'landing/large-book.html' with book=books.0 %}
{% include 'landing/small-book.html' with book=books.1 %}
{% include 'landing/small-book.html' with book=books.2 %}
{% include 'landing/small-book.html' with book=books.3 %}
{% include 'landing/small-book.html' with book=books.4 %}
{% include 'landing/large-book.html' with book=books.5 %}
{% endcache %} {% endblock %}