1 {% extends '2022/base.html' %}
5 {% load choose_cites from social_tags %}
6 {% load catalogue_tags %}
7 {% load likes_book from social_tags %}
10 {% block global-content %}
11 <div class="l-container">
12 <div class="l-breadcrumb">
13 <a href="/"><span>Strona główna</span></a>
14 <a href="/katalog/lektury/"><span>Literatura</span></a>
15 {% for ancestor in book.ancestors %}
16 <a href="{{ ancestor.get_absolute_url }}">{{ ancestor.title }}</a>
23 <section class="l-section">
24 {% with first_text=book.get_first_text %}
25 <aside class="l-aside">
27 {% if accessible and first_text %}
28 <a href="{% url 'book_text' first_text.slug %}">
30 <img src="{% if book.cover_clean %}{{ book.cover_clean.url }}{% endif %}" alt="{{ book.pretty_title }}" width="240">
31 {% if accessible and first_text %}
36 {% if book.parent or book.get_children %}
37 <ul class="l-aside__zbiory">
39 {% for b in book.ancestors %}
41 <a href="{{ b.get_absolute_url }}">{{ b.title }}</a>
44 {% for b in book.get_siblings %}
47 <strong>{{ b.title }}</strong>
49 {% for c in book.get_children %}
51 <a href="{{ c.get_absolute_url }}">{{ c.title }}</a>
56 <a href="{{ b.get_absolute_url }}">{{ b.title }}</a>
61 {% for b in book.ancestor.all %}
67 <strong>{{ book.title }}</strong>
69 {% for c in book.get_children %}
71 <a href="{{ c.get_absolute_url }}">{{ c.title }}</a>
80 <ul class="l-aside__info">
81 <li><span>Epoka:</span> {% for tag in book.epochs %}<a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a> {% endfor %}</li>
82 <li><span>Rodzaj:</span> {% for tag in book.kinds %}<a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a> {% endfor %}</li>
83 <li><span>Gatunek:</span> {% for tag in book.genres %}<a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a> {% endfor %}</li>
87 <div class="l-content">
88 <header class="l-header">
89 <div class="l-header__content">
90 <p>{% for author in book.authors %}<a href="{{ author.get_absolute_url }}">{{ author.name }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}
92 <h1><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></h1>
93 {% if book.translators %}
94 <p class="l-header__translators">
96 {% for translator in book.translators %}
97 {{ translator }}{% if not forloop.last %}, {% endif %}
102 <div class="l-header__actions">
103 {% likes_book book as likes %}
105 <form method='post' action='{% url 'social_unlike_book' book.slug %}'>
107 <button class="l-button l-button--fav">
108 <img src="{% static '2022/images/faved.svg' %}" alt="Usuń z ulubionych">
112 <form method='post' action='{% url 'social_like_book' book.slug %}'>
114 <button class="l-button l-button--fav">
115 <img src="{% static '2022/images/fav.svg' %}" alt="Dodaj do ulubionych">
121 <article class="l-article">
123 <div class="c-media">
124 <div class="c-media__actions">
125 <div class="c-media__btn">
126 {% if book.has_mp3_file %}
127 <button class="l-button l-button--media" id="audiobook"><i class="icon icon-audio"></i> pobierz audiobook</button>
130 <div class="c-media__btn">
131 <button class="l-button l-button--media" id="ebook"><i class="icon icon-book"></i> pobierz książkę</button>
133 <div class="c-media__btn">
135 <a href="{% url 'book_text' first_text.slug %}" class="l-button l-button--media l-button--media--full"><i class="icon icon-eye"></i> czytaj online</a>
142 {% if book.has_mp3_file %}
143 {% include 'catalogue/snippets/2022_jplayer.html' %}
145 {% with ch=book.get_child_audiobook %}
147 {% include 'catalogue/snippets/2022_jplayer_link.html' with book=ch %}
156 <div class="c-media__popup" data-popup="ebook">
157 <div class="c-media__popup__box">
158 <div class="c-media__popup__box__lead">
159 <h2>Pobieranie e-booka</h2>
160 <p>Wybierz wersję dla siebie:</p>
162 <div class="c-media__popup__box__items">
163 {% if book.pdf_file %}
164 <div class="c-media__popup__box__item">
167 <p>Jeśli planujesz wydruk albo lekturę na urządzeniu mobilnym bez dodatkowych aplikacji.</p>
170 <a href="{{ book.pdf_url }}" class="l-button l-button--media l-button--media--full">.pdf</a>
174 {% if book.epub_file %}
175 <div class="c-media__popup__box__item">
178 <p>Uniwersalny format e-booków, obsługiwany przez większość czytników sprzętowych i aplikacji na urządzenia mobilne.</p>
181 <a href="{{ book.epub_url }}" class="l-button l-button--media l-button--media--full">.epub</a>
185 {% if book.mobi_file %}
186 <div class="c-media__popup__box__item">
189 <p>Natywny format dla czytnika Amazon Kindle.</p>
192 <a href="{{ book.mobi_url }}" class="l-button l-button--media l-button--media--full">.mobi</a>
196 {% if book.synchro_file %}
197 <div class="c-media__popup__box__item">
199 <h3>synchrobook (epub3)</h3>
200 <p>Książka elektroniczna i audiobook w jednym. Wymaga aplikacji obsługującej format (np. ..., ..., ...).</p>
203 <a href="#" class="l-button l-button--media l-button--media--full">synchrobook</a>
207 {% if book.txt_file or book.fb2_file %}
208 <div class="c-media__popup__box__item">
210 <h3>inne formaty</h3>
212 <li><a href="{% url 'custom_pdf_form' book.slug %}">Stwórz własny PDF</a></li>
213 {% if book.txt_file %}<li><a href="{{ book.txt_url }}">plik tekstowy (.txt)</a></li>{% endif %}
214 {% if book.fb2_file %}<li><a href="{{ book.fb2_url }}">FictionBook</a></li>{% endif %}
220 <button class="c-media__popup__close">
221 <img src="{% static '2022/images/close.svg' %}" alt="Zamknij">
225 {% if book.has_mp3_file %}
226 <div class="c-media__popup" data-popup="audiobook">
227 <div class="c-media__popup__box">
228 <div class="c-media__popup__box__lead">
229 <h2>Pobieranie audiobooka</h2>
230 <p>Wybierz wersję dla siebie:</p>
232 <div class="c-media__popup__box__items">
233 <div class="c-media__popup__box__item">
236 <p>Uniwersalny format, obsługiwany przez wszystkie urządzenia.</p>
239 <a href="{% url 'download_zip_mp3' book.slug %}" class="l-button l-button--media l-button--media--full">.mp3</a>
242 {% if book.has_ogg_file %}
243 <div class="c-media__popup__box__item">
246 <p>Otwarty format plików audio, oferujący nagranie w najwyższej jakości dźwiękowej.</p>
249 <a href="{% url 'download_zip_ogg' book.slug %}" class="l-button l-button--media l-button--media--full">.ogg</a>
253 {% if book.has_daisy_file %}
254 <div class="c-media__popup__box__item">
257 <p>Format dla osób z dysfunkcjami czytania.</p>
260 {% for dsy in book.media_daisy %}
261 <a href="{{ dsy.file.url }}" class="l-button l-button--media l-button--media--full">DAISY</a>
266 {% if book.has_audio_epub_file %}
267 <div class="c-media__popup__box__item">
269 <h3>EPUB + audiobook</h3>
270 <p>Książka elektroniczna i audiobook w jednym. Wymaga aplikacji obsługującej format.</p>
273 {% for epub in book.media_audio_epub %}
274 <a href="{{ epub.file.url }}" class="l-button l-button--media l-button--media--full">EPUB+audio</a>
280 <button class="c-media__popup__close">
281 <img src="{% static '2022/images/close.svg' %}" alt="Zamknij">
288 <div style="margin-bottom: 1.5rem; font-size: 15px; like-height: 150%; color: #808080;">
289 {% chunk 'book-preview-warn' %}
292 <div class="l-checkout__box">
293 {% include 'club/2022/donation_step1_form.html' with form=donation_form %}
297 <div class="l-article__overlay" data-max-height="327">
298 {{ book.abstract|safe }}
302 <h4>Spis treści:</h4>
307 <button class="l-article__read-more" aria-label="Kliknij aby rozwinąć" data-label="Czytaj więcej" data-action="Zwiń tekst">Czytaj więcej</button>
310 <div class="c-support">
312 <h2>Ta książka jest dostępna dla tysięcy dzieciaków dzięki <span>darowiznom</span> od osób takich jak <span>Ty</span>!</h2>
313 <a href="{% url 'club_join' %}?pk_campaign=layout">Dorzuć się!</a>
316 <img src="{% static '2022/images/dziecko.jpeg' %}" alt="Dorzuć się!">
324 {% for author in book.authors %}
325 <section class="l-section">
326 <div class="l-author">
327 {% include 'catalogue/2022/author_box.html' %}
329 {% choose_cites 3 book=book as cites %}
332 <div class="l-author__quotes">
333 <div class="l-author__quotes__slider">
334 {% for fragment in cites %}
335 {% include "catalogue/2022/fragment_box.html" %}
345 <section class="l-section">
346 <div class="l-themes__wrapper">
347 {% with book.related_themes as themes %}
349 <h2>Motywy występujące w tym utworze <a href="/katalog/motyw/"><span>Wszystkie motywy</span> <i class="icon icon-arrow-right"></i></a></h2>
350 <div class="l-themes l-article__overlay" data-max-height="80">
352 {% for item in themes %}
353 <li><a href="{% url 'book_fragments' book.slug item.slug %}">{{ item }} ({{ item.count}})</a></li>
357 <button class="l-article__read-more" aria-label="Kliknij aby rozwinąć" data-label="Czytaj więcej" data-action="Zwiń tekst">Zobacz więcej</button>
362 {% if book.wiki_link %}
363 <li><a href="{{ book.wiki_link }}">strona utworu w Wikipedii</a></li>
367 <a href="{{ book.xml_url }}">źródłowy plik XML</a>
370 <a target="_blank" href="{% url 'poem_from_book' book.slug %}">miksuj treść utworu</a>
373 <a target="_blank" href="{{ book.get_extra_info_json.about }}">utwór na Platformie Redakcyjnej</a>
385 <section class="l-section">
386 <div class="l-books__wrapper">
387 <div class="l-container">
388 <h2>Czytaj także</h2>
389 <div class="l-books">
390 {% if book.other_versions %}
391 {% for rel in book.other_versions %}
392 <article class="l-books__item">
393 <figure class="l-books__item__img">
394 <a href="{{ rel.get_absolute_url }}">
395 <img src="{% if rel.cover_clean %}{{ rel.cover_clean.url }}{% endif %}" alt="{{ rel.pretty_title }}">
399 {% for author in rel.authors %}
400 <a href="{{ author.get_absolute_url }}">{{ author }}</a>
403 <h2><a href="{{ rel.get_absolute_url }}">{{ rel.title }}</a></h2>
409 {% related_books_2022 book taken=book.other_versions|length as related_books %}
410 {% for rel in related_books %}
411 <article class="l-books__item">
412 <figure class="l-books__item__img">
413 <a href="{{ rel.get_absolute_url }}">
414 <img src="{% if rel.cover_clean %}{{ rel.cover_clean.url }}{% endif %}" alt="{{ rel.pretty_title }}">
418 {% for author in rel.authors %}
419 <a href="{{ author.get_absolute_url }}">{{ author|upper }}</a>
422 <h2><a href="{{ rel.get_absolute_url }}">{{ rel.title }}</a></h2>
426 <article class="l-books__item l-books__item--link">
427 <a href="/katalog/kolekcje/">i wiele innych książek, wierszy, obrazów, audiobooków…</a>
428 <a href="/katalog/kolekcje/" class="icon-link"><i class="icon icon-all"></i></a>