Code layout change.
[wolnelektury.git] / src / picture / templates / picture / picture_detail.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load picture_tags catalogue_tags pagination_tags %}
4 {% load thumbnail %}
5 {% load build_absolute_uri from fnp_common %}
6
7
8 {% block ogimage %}{% thumbnail picture.image_file "535" upscale="false" as thumb %}{{ thumb.url|build_absolute_uri:request }}{% endthumbnail %}{% endblock %}
9
10
11 {% block titleextra %}{{ picture.title }}{% endblock %}
12
13 {% block bodyid %}picture-detail{% endblock %}
14
15 {% block body %}
16   {% picture_wide picture %}
17
18 {% spaceless %}
19
20 <section class="see-also" style="display: inline-block;">
21 <h1>{% trans "See also" %}:</h1>
22 {% related_books picture %}
23 </section>
24 {% endspaceless %}
25
26 {% endblock %}