Newsletter in menu.
[wolnelektury.git] / src / social / templates / social / cite_promo.html
index f7c4e48..6051710 100644 (file)
@@ -3,20 +3,22 @@
   {% load embed_video from social_tags %}
 
   {% if main %}
-    <section class="big-cite"{% if cite.image and not cite.banner %} style="background-image: url('{{ cite.image.url }}'); background-position: 50% {{ cite.image_shift|default_if_none:50 }}%;"{% endif %} {% if cite.banner %}class="banner"{% endif %}>
+    <section class="big-cite"{% if cite.image or cite.background_plain %} style="{% if cite.image %}background-image: url('{{ cite.image.url }}');{% else %}background-image: none; background-color: {{ cite.background_color|default:"#000000" }};{% endif %}"{% endif %}>
   {% endif %}
 
   {% if cite %}
   <a href="{{ cite.link }}" class="cite-{{ cite.layout }}">
-      {% if cite.banner %}
-        <img src="{{ cite.image.url }}" width="100%"/>
-      {% else %}
         {% if cite.video %}
-       {% embed_video cite.video %}
+          <div class="box-c">
+           {% embed_video cite.video %}
+         </div>
        {% endif %}
        {% if cite.picture %}
-               <img src="{{ cite.picture.url }}">
+         <div class="box-c">
+           <img class="picture" src="{{ cite.picture.url }}" alt="{{ cite.picture_alt }}">
+         </div>
        {% endif %}
+       <div class="{% if cite.small %}cite-text-small{% endif %}">
         {% if cite.vip %}
           <p class='vip mono'><span>{{ cite.vip }} {% trans "recommends" %}:</span></p>
         {% endif %}
@@ -28,7 +30,7 @@
         {% if cite.book %}
           <p class="source mono"><span>{{ cite.book.pretty_title }}</span></p>
         {% endif %}
-      {% endif %}
+       </div>
     </a>
   {% endif %}