Locatizations.
[wolnelektury.git] / src / catalogue / templates / catalogue / book_fragments.html
1 {% extends 'base.html' %}
2 {% load i18n %}
3 {% load pagination_tags %}
4
5 {% block global-content %}
6   <div class="l-container">
7     <div class="l-breadcrumb">
8       <a href="/"><span>{% trans "Strona główna" %}</span></a>
9       <a href="/katalog/lektury/"><span>{% trans "Literatura" %}</span></a>
10       {% for ancestor in fragment.book.ancestors %}
11         <a href="{{ ancestor.get_absolute_url }}">{{ ancestor.title }}</a>
12       {% endfor %}
13       <a href="{{ fragment.book.get_absolute_url }}"><span>{{ book.title }}</span></a>
14     </div>
15   </div>
16
17   <main class="l-main">
18
19     <div class="l-section">
20       <div class="l-author__header">
21         <h1>
22           <span>{% trans "Motyw" %}:</span> {{ theme.name }}
23           <span>{% trans "w utworze" %}</span>
24           <a href="{{ book.get_absolute_url }}">{{ book }}</a>
25         </h1>
26       </div>
27     </div>
28
29     <!-- div class="l-section">
30          <div class="l-books__header">
31          <div class="l-books__input">
32          <i class="icon icon-filter"></i>
33          <input type="text" placeholder="filtry, tytuł">
34          </div>
35          <div class="l-books__sorting">
36          <span>Sortuj:</span>
37          <div>
38          <button>autorzy</button>
39          <button>epoki</button>
40          <button>gatunki</button>
41          <button>rodzaje</button>
42          <button class="is-active">motywy</button>
43          </div>
44          </div>
45          </div>
46          </div -->
47
48     {% autopaginate fragments 10 %}
49
50     <div class="l-section l-section--col">
51       <div class="l-theme">
52         <div class="l-theme__col">
53           <div class="l-books__col">
54
55             {% for fragment in fragments %}
56               {% include 'catalogue/fragment_box.html' %}
57             {% endfor %}
58             {% paginate %}
59           </div>
60         </div>
61         <div class="l-theme__col">
62           <div class="l-theme__info">
63             <h3>{% trans "Motyw" %}: {{ theme.name }}</h3>
64             {{ theme.description|safe }}
65             <!--
66                  <h3>Motyw w sztuce <i class="icon icon-arrow-left"></i> <i class="icon icon-arrow-right"></i></h3>
67                  <div class="l-theme__info__slider">
68                  <img src="images/motyw.jpg" alt="">
69                  <img src="images/motyw.jpg" alt="">
70                  <img src="images/motyw.jpg" alt="">
71                  </div>
72             -->
73           </div>
74         </div>
75       </div>
76     </div>
77   </main>
78
79 {% endblock %}