starting with the new look
[wolnelektury.git] / wolnelektury / templates / catalogue / book_mini_box.html
1 {% load i18n %}
2 <div class="book-mini-box">
3     <a href="{{ book.get_absolute_url }}">
4         <img src="{{ STATIC_URL }}img/cover.png"
5                 alt="{% trans "Book cover" %}" />
6         {% for author in authors %}
7             <div class="mono author">{{ author }}</div>
8             {{ book.title }}
9         {% endfor %}
10     </a>
11 </div>
12
13