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