e4f43cdac6cb07991e40a46d11a7c1d4c6b21a6d
[wolnelektury.git] / src / catalogue / templates / catalogue / preview_ad_homepage.html
1 {% if book %}
2   <section class="l-section">
3     <div class="p-homepage-prapremiera">
4       <div class="l-container">
5         <h3>Prapremiera</h3>
6         <div class="p-homepage-prapremiera__box">
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             <strong>
14               <h4>
15                 {% for author in book.authors %}
16                   <a href="{{ author.get_absolute_url }}">{{ author }}</a>
17                 {% endfor %}
18               </h4>
19               <h3><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></h3>
20               <p>{{ book.abstract|safe }}</p>
21           </div>
22           <div class="p-homepage-prapremiera__box__donate">
23             {% if accessible %}
24               <p>Dziękujemy za wsparcie — przeczytaj w prezencie już dzisiaj!</p>
25             {% else %}
26               <p>Aby przeczytać prapremierę, <strong>dorzuć</strong> się do Wolnych Lektur dowolną wpłatą. Ustaw stałe wsparcie, a będziesz mieć dostęp do kolejnych <strong>prapremier</strong>.</p>
27               <a href="#" class="l-button l-button--default l-button--default--dark">Dorzuć się</a>
28             {% endif %}
29           </div>
30         </div>
31       </div>
32     </div>
33   </section>
34 {% endif %}