Embargo links hidden.
[wolnelektury.git] / src / social / templates / social / cite_promo.html
1 {% spaceless %}
2   {% load i18n %}
3
4   {% if main %}
5     <section id="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 %}>
6   {% endif %}
7
8   {% if cite %}
9     <a href="{{ cite.link }}" {% if not cite.banner %}class="cite{% if cite.small %} cite-small{% endif %}{% endif %}">
10       {% if cite.banner %}
11         <img src="{{ cite.image.url }}" width="100%"/>
12       {% else %}
13         {% if cite.vip %}
14           <p class='vip mono'><span>{{ cite.vip }} {% trans "recommends" %}:</span></p>
15         {% endif %}
16         <blockquote class="cite-body">
17           <span>{{ cite.text|linebreaksbr|safe }}</span>
18         </blockquote>
19         {% if cite.book %}
20           <p class="source mono"><span>{{ cite.book.pretty_title }}</span></p>
21         {% endif %}
22       {% endif %}
23     </a>
24   {% endif %}
25
26   {% if main %}
27     </section>
28   {% endif %}
29 {% endspaceless %}