Fundraising in PDF.
[wolnelektury.git] / src / catalogue / templates / catalogue / preview_ad_homepage.html
1 {% load i18n %}
2 {% if book %}
3   <div class="p-homepage-prapremiera">
4     <h3>{% trans "Prapremiera" %}</h3>
5     <div class="p-homepage-prapremiera__box">
6       <div class="p-homepage-prapremiera__box__item">
7         {% if book.cover_clean %}
8         <figure>
9           <a href="{{ book.get_absolute_url }}">
10             <img src="{{ book.cover_clean.url }}" alt="{{ book.pretty_title }}">
11           </a>
12         </figure>
13         {% endif %}
14         <div class="p-homepage-prapremiera__box__content">
15           <h4>
16             {% for author in book.authors %}
17               <a href="{{ author.get_absolute_url }}">{{ author }}</a>
18             {% endfor %}
19           </h4>
20           <h3><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></h3>
21           <p>{{ book.abstract|safe|truncatewords:20 }}</p>
22         </div>
23       </div>
24       <div class="p-homepage-prapremiera__box__donate">
25         {% if accessible %}
26           <p>{% trans "Dziękujemy za wsparcie – przeczytaj w prezencie już dzisiaj!" %}</p>
27         {% else %}
28           <p>
29             {% blocktrans trimmed %}
30               Aby przeczytać prapremierę, <strong>dorzuć</strong> się do Wolnych Lektur
31               dowolną wpłatą. Ustaw stałe wsparcie, a będziesz mieć dostęp do
32               kolejnych <strong>prapremier</strong>.
33             {% endblocktrans %}
34           </p>
35           <a href="{{ book.get_absolute_url }}" class="l-button l-button--default l-button--default--dark">
36             {% trans "Dorzuć się" %}
37           </a>
38         {% endif %}
39       </div>
40     </div>
41   </div>
42 {% endif %}