-{% load i18n %}
{% load thumbnail %}
<div class="book-mini-box">
<a href="{{ book.get_absolute_url }}">
{% empty %}
{{ book.cover.url }}
{% endthumbnail %}
- " alt="{% trans "Book cover" %}" />
+ " alt="Cover" />
{% endif %}
{% for author in authors %}
- <div class="mono author">{{ author }}</div>
- {{ book.title }}
+ <div class="desc">
+ <span class="mono author">{{ author }}</span>
+ <span class="title">{{ book.title }}</span>
+ </div>
{% endfor %}
</a>
</div>