Locatizations.
[wolnelektury.git] / src / catalogue / templates / catalogue / fragment_box.html
1 {% load i18n %}
2 <article class="l-books__item">
3   <figure class="l-books__item__img">
4     <a href="{{ fragment.get_absolute_url }}">
5       {% if fragment.book.cover_clean %}
6         <img src="{{ fragment.book.cover_clean.url }}" alt="{{ fragment.book.title }}">
7       {% endif %}
8     </a>
9     <div class="l-books__item__actions">
10       <a href="{{ fragment.book.get_absolute_url }}" class="icon icon-book-alt"></a>
11       {% if fragment.book.has_mp3_file %}
12         <a href="{{ fragment.book.get_absolute_url }}" class="icon icon-audio"></a>
13       {% endif %}
14     </div>
15   </figure>
16   <div class="l-books__item__content s">
17     <h3>
18       {% for author in fragment.book.authors %}
19         <a href="{{ author.get_absolute_url }}">{{ author }}</a>{% if not forloop.last %}, {% endif %}
20       {% endfor %}
21     </h3>
22     <h2><a href="{{ fragment.book.get_absolute_url }}">{{ fragment.book.title }}</a></h2>
23     <div class="fragment-text">
24       {{ fragment.short_text|safe }}
25     </div>
26     <a href="{{ fragment.get_absolute_url }}">{% trans "Czytaj wiÄ™cej" %}</a>
27   </div>
28 </article>