Add cover with logos.
[wolnelektury.git] / apps / catalogue / templates / catalogue / book_mini_box.html
1 <div class="book-mini-box">
2     <a href="{{ book.get_absolute_url }}">
3         {% if book.cover %}
4             <img src="{{ book.cover_thumb.url }}"
5                 alt="{{ author_str }} – {{ book.title }}" class="cover" />
6         {% endif %}
7         <div class="desc">
8             <span class="mono author">{{ author_str }}</span>
9             <span class="title">{{ book.title }}</span>
10         </div>
11     </a>
12 </div>
13
14