rearrangements: new core app, templates in apps, split settings;
[wolnelektury.git] / 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
deleted file mode 100755 (executable)
index 58abaa6..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-{% load thumbnail %}
-<div class="book-mini-box">
-    <a href="{{ book.get_absolute_url }}">
-        {% if book.cover %}
-            <img src="
-                {% thumbnail book.cover "216x288" as thumb %}
-                    {{ thumb.url }}
-                {% empty %}
-                    {{ book.cover.url }}
-                {% endthumbnail %}
-            " alt="Cover" />
-        {% endif %}
-        {% for author in authors %}
-            <div class="desc">
-                <span class="mono author">{{ author }}</span>
-                <span class="title">{{ book.title }}</span>
-            </div>
-        {% endfor %}
-    </a>
-</div>
-
-