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