Merge branch 'reflow'
[wolnelektury.git] / apps / catalogue / templates / catalogue / book_mini_box.html
diff --git a/apps/catalogue/templates/catalogue/book_mini_box.html b/apps/catalogue/templates/catalogue/book_mini_box.html
deleted file mode 100755 (executable)
index b5c7d97..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-{% load thumbnail %}
-<div class="book-mini-box">
-    <div class="book-mini-box-inner">
-    {% if with_link %}
-    <a href="{{ book.get_absolute_url }}">
-    {% endif %}
-        {% if book.cover %}
-            <img src="
-                {% thumbnail book.cover "139x193" as thumb %}
-                    {{ thumb.url }}
-                {% empty %}
-                    {{ book.cover.url }}
-                {% endthumbnail %}
-            " alt="{{ author_str }} – {{ book.title }}" class="cover" />
-        {% endif %}
-        {% if show_lang %}
-            <span class="language" title="{{ book.language_name }}">{{ book.language_code }}</span>
-        {% endif %}
-        <div class="desc">
-            <span class="mono author">{{ author_str }}</span>
-            <span class="title">{{ book.title }}</span>
-        </div>
-    {% if with_link %}
-    </a>
-    {% endif %}
-    </div>
-</div>
-
-