{% load thumbnail filer_tags filer_image_tags %}{% spaceless %}
{% comment %}
You may change the image size for special cases in your project by overriding
this template. There are a few size manipulation filters for this in
`filer_image_tags`:
{% if placeholder == 'my_special_sidebar' %}
{% thumbnail instance.image opts.size|extra_padding_y:10 crop=opts.crop upscale=opts.upscale as thumbnail %}
{% else %}
{% thumbnail instance.image opts.size crop=opts.crop upscale=opts.upscale as thumbnail %}
{% endif %}
{% if link %}{% endif %}
{% if link %}{% endif %}
{% endcomment %}
{% if instance.image %}
{% thumbnail instance.image size crop=opts.crop upscale=opts.upscale subject_location=opts.subject_location as thumbnail %}
{% if link %}{% endif %}
{% if link %}{% endif %}
{% else %}
{# just a plain link to some external image #}
{% if link %}{% endif %}
{% if link %}{% endif %}
{% endif %}
{% endspaceless %}