Code layout change.
[wolnelektury.git] / src / picture / templates / picture / picture_mini_box.html
diff --git a/src/picture/templates/picture/picture_mini_box.html b/src/picture/templates/picture/picture_mini_box.html
new file mode 100644 (file)
index 0000000..d8ebbf7
--- /dev/null
@@ -0,0 +1,23 @@
+{% spaceless %}
+
+{% load thumbnail %}
+<div class="book-mini-box">
+    <div class="book-mini-box-inner">
+    {% if with_link %}
+    <a href="{{ picture.get_absolute_url }}">
+    {% endif %}
+        {% if picture.image_file %}
+            <img src="{% thumbnail picture.image_file "139x193" crop="center" as thumb %}{{ thumb.url }}{% empty %}{{ picture.image_file.url }}{% endthumbnail %}" alt="{{ author_str }} – {{ picture.title }}" class="cover" />
+        {% endif %}
+        <div class="desc">
+            <span class="mono author">{{ author_str }}</span>
+            <span class="title">{{ picture.title }}</span>
+        </div>
+    {% if with_link %}
+    </a>
+    {% endif %}
+    </div>
+</div>
+
+
+{% endspaceless %}
\ No newline at end of file