a996d66ee07b672d18703c7432a7d660d1d01b52
[wolnelektury.git] / wolnelektury / templates / catalogue / book_detail.html
1 {% extends "base.html" %}
2 {% load cache i18n %}
3 {% load thumbnail %}
4 {% load catalogue_tags pagination_tags %}
5
6 {% block titleextra %}{{ book.pretty_title }}{% endblock %}
7 {% block ogimage %}{{ book.cover.url|build_absolute_uri:request }}{% endblock %}
8
9 {% block metadescription %}{% book_title book %}. {{ block.super }}{% endblock %}
10
11 {% block bodyid %}book-detail{% endblock %}
12
13 {% block body %}
14
15 {% book_wide book %}
16
17 {% work_list book_children %}
18
19
20 <h2 class="main-last"><span class="mono">{% trans "See also" %}:</span></h2>
21 {% related_books book %}
22
23 {% endblock %}