Cites: sticky and custom backgrounds.
[wolnelektury.git] / apps / wolnelektury_core / templates / main_page.html
index f9ff45e..9932b67 100755 (executable)
@@ -7,9 +7,8 @@
 {% block ogtitle %}{% trans "Wolne Lektury internet library" %}{% endblock %}
 
 {% block body %}
-
-    <div id="big-cite">
-        {% cite_promo %}
+    <div id="big-cite"{% if cite.image %}style="background-image: url('{{ cite.image.url }}');"{% endif %} >
+        {% render_cite cite %}
     </div>
 
     {% spaceless %}
 
 {% block add_footer %}
 <p>{% trans "Image used:" %} 
-<a href="http://www.flickr.com/photos/lou/430980641/">books about architecture</a>,
-saikofish@Flickr,
-<a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">CC BY NC SA</a>.
+{% if cite.image %}
+    {% if cite.image_link %}<a href="{{ cite.image_link }}">{% endif %}
+    {% if cite.image_title %}
+        {{ cite.image_title }}{% else %}
+        untitled{% endif %}{% if cite.image_link %}</a>{% endif %},
+    {% if cite.image_author %}{{ cite.image_author }},{% endif %}
+    {% if cite.image_license_link %}<a href="{{ cite.image_license_link }}">{% endif %}
+    {{ cite.image_license }}
+    {% if cite.image_license_link %}</a>{% endif %}
+{% else %}
+    <a href="http://www.flickr.com/photos/lou/430980641/">books about architecture</a>,
+    saikofish@Flickr,
+    <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">CC BY NC SA</a>.
+{% endif %}
 </p>
 {% endblock %}