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