Code layout change.
[wolnelektury.git] / apps / picture / templates / picture / picture_mini_box.html
diff --git a/apps/picture/templates/picture/picture_mini_box.html b/apps/picture/templates/picture/picture_mini_box.html
deleted file mode 100644 (file)
index 5df989e..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-
-{% load thumbnail %}
-<div class="book-mini-box">
-    <a href="{{ book.get_absolute_url }}">
-        {% if picture.cover %}
-            <img src="
-                {% thumbnail book.cover "139x193" as thumb %}
-                    {{ thumb.url }}
-                {% empty %}
-                    {{ book.cover.url }}
-                {% endthumbnail %}
-            " alt="{{ author_str }} – {{ book.title }}" class="cover" />
-        {% endif %}
-        <div class="desc">
-            <span class="mono author">{{ author_str }}</span>
-            <span class="title">{{ book.title }}</span>
-        </div>
-    </a>
-</div>
-
-