Add og:image on image page
[wolnelektury.git] / apps / 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 common_tags %}
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 {% endblock %}