0494a8b6e14bdf5ea1f18c24d9481e5245a19be7
[wolnelektury.git] / src / catalogue / templates / catalogue / preview_ad.html
1 {% if book %}
2   <p>
3     <strong>Prapremiera!</strong>
4     Dziękujemy za wsparcie – przeczytaj w prezencie już dzisiaj!
5   </p>
6   <div class="l-navigation__menu__book__info">
7     <a href="{{ book.get_absolute_url }}" tabindex="-1">
8       <img src="{{ book.cover_clean.url }}" alt="{{ book.pretty_title }}">
9     </a>
10     <h3>
11       <a href="{{ book.get_absolute_url }}" tabindex="-1">
12         {% for author in book.authors %}
13           {{ author }}
14         {% endfor %}
15         <strong>
16           {{ book.title }}
17         </strong>
18       </a>
19     </h3>
20     <div>
21       {{ book.description|truncatewords_html:20|safe }}
22     </div>
23   </div>
24 {% endif %}