reformat templates
[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 %} style="background-image: url('{{ cite.image.url }}'); background-position: 50% {{ cite.image_shift|default_if_none:50 }}%;"{% endif %} >
6   {% endif %}
7
8   {% if cite %}
9     <a href="{{ cite.link }}" class="cite{% if cite.small %} cite-small{% endif %}">
10       {% if cite.vip %}
11         <p class='vip mono'><span>{{ cite.vip }} {% trans "recommends" %}:</span></p>
12       {% endif %}
13       <blockquote class="cite-body">
14         <span>{{ cite.text|linebreaksbr|safe }}</span>
15       </blockquote>
16       {% if cite.book %}
17         <p class="source mono"><span>{{ cite.book.pretty_title }}</span></p>
18       {% endif %}
19     </a>
20   {% endif %}
21
22   {% if main %}
23     </section>
24   {% endif %}
25 {% endspaceless %}