6051710a69fcbf732f58aa54fc03e11d6ab3a689
[wolnelektury.git] / src / social / templates / social / cite_promo.html
1 {% spaceless %}
2   {% load i18n %}
3   {% load embed_video from social_tags %}
4
5   {% if main %}
6     <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 %}>
7   {% endif %}
8
9   {% if cite %}
10   <a href="{{ cite.link }}" class="cite-{{ cite.layout }}">
11         {% if cite.video %}
12           <div class="box-c">
13             {% embed_video cite.video %}
14           </div>
15         {% endif %}
16         {% if cite.picture %}
17           <div class="box-c">
18             <img class="picture" src="{{ cite.picture.url }}" alt="{{ cite.picture_alt }}">
19           </div>
20         {% endif %}
21         <div class="{% if cite.small %}cite-text-small{% endif %}">
22         {% if cite.vip %}
23           <p class='vip mono'><span>{{ cite.vip }} {% trans "recommends" %}:</span></p>
24         {% endif %}
25         {% if cite.text %}
26           <blockquote class="cite-body">
27             <span>{{ cite.text|linebreaksbr|safe }}</span>
28           </blockquote>
29         {% endif %}
30         {% if cite.book %}
31           <p class="source mono"><span>{{ cite.book.pretty_title }}</span></p>
32         {% endif %}
33         </div>
34     </a>
35   {% endif %}
36
37   {% if main %}
38     </section>
39   {% endif %}
40 {% endspaceless %}