Switch cover.
[wolnelektury.git] / src / catalogue / templates / catalogue / book_mini_box.html
1 {% spaceless %}
2   {% load thumbnail %}
3   {% with book.author_unicode as author %}
4     <div class="book-mini-box">
5       <div class="book-mini-box-inner">
6         {% if not no_link %}
7           <a href="{{ book.get_absolute_url }}">
8         {% endif %}
9           {% if book.cover_clean %}
10             <img src="{% thumbnail book.cover_clean '139x193' as th %}{{ th.url }}{% endthumbnail %}" alt="{{ author }} – {{ book.title }}" class="cover" />
11           {% endif %}
12           {% if book.is_foreign %}
13             <span class="language" title="{{ book.language_name }}">{{ book.language_code }}</span>
14           {% endif %}
15           <div class="desc">
16             <span class="mono author">{{ author }}</span>
17             <span class="title">{{ book.title }}</span>
18           </div>
19         {% if not no_link %}
20           </a>
21         {% endif %}
22       </div>
23     </div>
24   {% endwith %}
25 {% endspaceless %}