a6732fc3d11a85d8237b5b24f9fccd6cc535b849
[wolnelektury.git] / src / catalogue / templates / catalogue / preview_ad.html
1 {% if book %}
2   <div class="l-navigation__menu__book__header">
3     {% if accessible %}
4       <p class='korona'>
5         <strong>Prapremiera!</strong>
6         Dziękujemy za wsparcie – przeczytaj w prezencie już dzisiaj!
7       </p>
8     {% else %}
9       <p>
10         <strong>Prapremiera!</strong>
11         Dorzuć się, aby przeczytać.
12       </p>
13       <a class="button" href="{% url 'club_join' %}?pk_campaign=menu-preview">Dorzuć się</a>
14     {% endif %}
15   </div>
16   <div class="l-navigation__menu__book__info">
17     <h3>
18       <a href="{{ book.get_absolute_url }}" tabindex="-1">
19         <img src="{{ book.cover_clean.url }}" alt="{{ book.pretty_title }}">
20       </a>
21       <a href="{{ book.get_absolute_url }}" tabindex="-1">
22         {% for author in book.authors %}
23           {{ author }}
24         {% endfor %}
25         <strong>
26           {{ book.title }}
27         </strong>
28       </a>
29     </h3>
30     <div>
31       {{ book.abstract|truncatewords_html:20|safe }}
32     </div>
33   </div>
34 {% endif %}