X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d82dc4a324b95f4cdfa724eed6b6181342f48b02..76fc2ed0abc7ff4bb7ddee798a115f11bf51ee1c:/wolnelektury/templates/catalogue/book_mini_box.html

diff --git a/wolnelektury/templates/catalogue/book_mini_box.html b/wolnelektury/templates/catalogue/book_mini_box.html
index 6728be84a..58abaa61d 100755
--- a/wolnelektury/templates/catalogue/book_mini_box.html
+++ b/wolnelektury/templates/catalogue/book_mini_box.html
@@ -1,4 +1,3 @@
-{% load i18n %}
 {% load thumbnail %}
 <div class="book-mini-box">
     <a href="{{ book.get_absolute_url }}">
@@ -9,11 +8,13 @@
                 {% 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>