1 {% extends 'base.html' %}
5 {% block breadcrumbs %}
6 <a><span>Cytaty użytkowników</span></a>
12 {% with book=object.book %}
13 <main class="l-main page-book">
14 <section class="l-section lay-s-col-rev">
15 {% with first_text=book.get_first_text %}
16 <aside class="l-aside">
17 <figure class="only-l">
18 <a href="{{ book.get_absolute_url }}">
19 <img src="{% if book.cover_clean %}{{ book.cover_clean.url }}{% endif %}" alt="{{ book.pretty_title }}" width="240">
24 <div class="l-content">
25 <header class="l-header">
26 <div class="l-header__content">
27 <p>{% for author in book.authors %}<a href="{{ author.get_absolute_url }}">{{ author.name }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}
29 <h1><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></h1>
30 {% if book.translators.exists %}
31 <p class="l-header__translators">
32 {% for translator in book.translators.all %}
33 {% if forloop.first and translator.name != 'tłumacz nieznany' %}
36 <a href="{{ translator.get_absolute_url }}">
37 {{ translator }}</a>{% if not forloop.last %}, {% endif %}
49 <div class="lay-row lay-l-block lay-spread">
50 <figure class="only-s book-cover-small">
51 <a href="{{ book.get_absolute_url }}">
52 <img src="{% if book.cover_clean %}{{ book.cover_clean.url }}{% endif %}" alt="{{ book.pretty_title }}">
59 <div class="l-author__quotes">
60 <div class="l-author__quotes__slider__item">
63 {{ object.text|linebreaksbr }}
67 <a class="text-link" href="{% url 'book_text' object.book.slug %}#{{ object.start_elem }}">zobacz w treści</a>