f7c4e48323e5efbfb629f985df4709993627c0eb
[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 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 %}>
7   {% endif %}
8
9   {% if cite %}
10   <a href="{{ cite.link }}" class="cite-{{ cite.layout }}">
11       {% if cite.banner %}
12         <img src="{{ cite.image.url }}" width="100%"/>
13       {% else %}
14         {% if cite.video %}
15         {% embed_video cite.video %}
16         {% endif %}
17         {% if cite.picture %}
18                 <img src="{{ cite.picture.url }}">
19         {% endif %}
20         {% if cite.vip %}
21           <p class='vip mono'><span>{{ cite.vip }} {% trans "recommends" %}:</span></p>
22         {% endif %}
23         {% if cite.text %}
24           <blockquote class="cite-body">
25             <span>{{ cite.text|linebreaksbr|safe }}</span>
26           </blockquote>
27         {% endif %}
28         {% if cite.book %}
29           <p class="source mono"><span>{{ cite.book.pretty_title }}</span></p>
30         {% endif %}
31       {% endif %}
32     </a>
33   {% endif %}
34
35   {% if main %}
36     </section>
37   {% endif %}
38 {% endspaceless %}