use full_image_options in post_detail.html template

This commit is contained in:
Christoph Reimers 2015-01-12 23:31:26 +01:00
parent ac237c8813
commit a061c14b6a

View file

@ -38,7 +38,7 @@
</header>
{% if post.main_image_id %}
<div class="blog-visual">
{% thumbnail post.main_image post.thumbnail_options.size crop=post.thumbnail_options.crop upscale=post.thumbnail_options.upscale subject_location=post.main_image.subject_location as thumb %}
{% thumbnail post.main_image post.full_image_options.size crop=post.full_image_options.crop upscale=post.full_image_options.upscale subject_location=post.main_image.subject_location as thumb %}
<img src="{{ thumb.url }}" alt="{{ post.main_image.default_alt_text }}" width="{{ thumb.width }}" height="{{ thumb.height }}" />
</div>
{% endif %}